← Back to team overview

keryx team mailing list archive

[Merge] lp:~mac9416/keryx/unstable into lp:keryx/unstable

 

mac9416 has proposed merging lp:~mac9416/keryx/unstable into lp:keryx/unstable.

    Requested reviews:
    Keryx Admins (keryx-admins)
The attached diff has been truncated due to its size.
-- 
https://code.launchpad.net/~mac9416/keryx/unstable/+merge/16889
Your team Keryx Development Team is subscribed to branch lp:keryx/unstable.
=== modified file 'keryx.py'
--- keryx.py	2010-01-06 03:15:41 +0000
+++ keryx.py	2010-01-06 03:50:25 +0000
@@ -17,6 +17,11 @@
 # along with this program; if not, write to the Free Software
 # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
 
+# Import commands here, even though we don't use it because debian.py uses it
+# and our plugin system confuses pyinstaller. We need to manually specify this
+# in keryx so that pyinstaller can grab it and bundle the code
+import commands
+
 import os.path, sys
 from lib import consts
 

=== modified file 'lib/plugins.py'
--- lib/plugins.py	2009-12-20 07:02:58 +0000
+++ lib/plugins.py	2010-01-06 03:50:25 +0000
@@ -78,7 +78,6 @@
         version = getattr(plugin, 'PLUGIN_VERSION')
         log.info(_('Plugin loaded: ') + file[:-3] + ' v' + version)
         return [name, instance, ptype, version]
-    except:
+    except Exception, e:
         log.error(file + _(' failed to load.'))
-        fail = True # a plugin failed to load
-        return
+        log.error(e)

=== modified file 'lib/wxkeryx/main.py'
--- lib/wxkeryx/main.py	2010-01-01 09:38:24 +0000
+++ lib/wxkeryx/main.py	2010-01-06 03:50:25 +0000
@@ -18,6 +18,8 @@
 
 import os.path, lib, sys, wx
 import wx.lib.buttons as buttons
+from wx.lib.mixins.listctrl import CheckListCtrlMixin
+import  wx.lib.filebrowsebutton as filebrowse
 from lib import consts, log, plugins, project
 from startDialog import startDialog
 from misc import detailsTab, ProportionalSplitter, VirtualList
@@ -346,40 +348,112 @@
 
     def OnInstall(self, event):
 
-        dlg = wx.MessageDialog(None, _("This procedure will first make the downloaded packages available to the OS in a format suitable for installation, then will call the OS to install them.  " + \
-                          "These steps both require 'root' access to the machine, so keryx will write the commands to a script and then run it as 'root'.  " + \
-                          "Would you like to continue? (got root?)"),
-                          _("Intro of Install"), wx.YES_NO | wx.ICON_QUESTION)
-        #dlg = InstallProjectDialog(None, -1, _("Install Project"))
+#        dlg = wx.MessageDialog(None, _("This procedure will first make the downloaded packages available to the OS in a format suitable for installation, then will call the OS to install them.  " + \
+#                          "These steps both require 'root' access to the machine, so keryx will write the commands to a script and then run it as 'root'.  " + \
+#                          "Would you like to continue? (got root?)"),
+#                          _("Intro of Install"), wx.YES_NO | wx.ICON_QUESTION)
+        dlg = InstallProjectDialog(None, -1, _("Install Project"))
         result = dlg.ShowModal()
+        if dlg.sys_cache_radio.GetValue():
+            sys_cache = True
+            local_repo = False
+            move = dlg.move_checkbox.GetValue()
+        elif dlg.local_repo_radio.GetValue():
+            local_repo = True
+            sys_cache = False
         dlg.Destroy()
-        if result == wx.ID_YES:
-            dlg = wx.MessageDialog(None, _("There are two methods for making the packages available. First, mimicing a Repository and informing the OS of it and letting it use the repo to retrieve its updates, " + \
-                          "or moving the packages directly into the OS'es cache so that the OS thinks its already downloaded them and only needs to install them. This way is easier.  " + \
-                          "Would you like to use the cache method? Selecting 'No' will use the Repo method."), \
-                          _("Choose Install method"), wx.YES_NO | wx.ICON_QUESTION)
+
+        if result == wx.ID_CANCEL:
+            return
+
+        if sys_cache:
+            install = project.projects[len(project.projects) - 1].plugin.installCache(project.projects[len(project.projects) -1].dir, 'installcache', move=move)
+        elif local_repo:
+            wx.MessageBox(_("This feature is not implemented yet. Sorry."),_("Not Implemented"))
+
+        if install:  # If installCache was successful...
+            dlg = wx.MessageDialog(None, _("The packages were successfully " \
+                        "copied to the system cache.\n\nWould you like to " \
+                        "install those packages now?"), \
+                        _("Project Install Successful"), 
+                        wx.YES_NO | wx.ICON_QUESTION)
             result = dlg.ShowModal()
             dlg.Destroy()
-            install = True
-            if result == wx.ID_YES:
-                dlg = wx.MessageDialog(None, _("You can either move your packages you have downloaded to the cache, or just copy them.\n" + \
-                               "Moving them will free up space in your project again. Move?\nPlease ensure no package manager is running before continuing! The script will be run next."), \
-                               _("Move Packages?"), wx.YES_NO | wx.ICON_QUESTION)
-                result = dlg.ShowModal()
-                dlg.Destroy()
-                if result == wx.ID_YES:
-                    move = True
-                else:
-                    move = False
-                install = project.projects[len(project.projects) - 1].plugin.installCache(project.projects[len(project.projects) -1].dir, 'installcache', move=move)
-            elif result == wx.ID_NO:
-                wx.MessageBox(_("This feature is not implemented yet. Sorry."),_("Not Implemented"))
-                #install = project.projects[len(project.projects) - 1].installRepo()
-            if not install:
-                wx.MessageBox(_("Oh no! A error occurred when doing the transfer. Check the log for more details. Make sure no other package manager is running when you try to transfer the files.\n" + \
-                         "Another option is transferring the files by hand (Knowledged users only)."), _("Install Error"))
-            else:
-                wx.MessageBox(_("Install finished."), _("Finished"))
+        else:
+            wx.MessageBox(_("Oh no! A error occurred when doing the transfer." \
+                        " Check the log for more details. Make sure no other " \
+                        "package manager is running when you try to transfer " \
+                        "the files.\n\nYou may attempt to transfer the files " \
+                        "by hand (experienced users only)."), _("Install Error"),
+                        wx.ICON_ERROR)
+            return
+        if result == wx.ID_NO:  # Don't want to install packages now...
+            return
+
+        # Install the packages
+        projdir = project.projects[len(project.projects) -1].dir
+        spacksdir = os.path.join(projdir, 'packages')
+        spacks = [x for x in os.listdir(spacksdir) if os.path.isfile(os.path.join(spacksdir, x)) and (os.path.splitext(x)[1] == '.deb')]
+        packnames = sorted([x[:x.find('_')] for x in spacks])
+
+        # Ask what packages need to be installed
+        items = dict([(num+1, pkg) for (num, pkg) in zip(range(len(packnames)), packnames)])
+        dlg = SelectPackagesDialog(None, -1, _("Install Project"), items)
+        result = dlg.ShowModal()
+        packnames = dlg.GetSelected()
+        dlg.Destroy()
+
+        if result == wx.ID_CANCEL:  # Never mind about installing packages now...
+            return
+
+        result = project.projects[len(project.projects) - 1].plugin.installPacks(' '.join(packnames))
+        if result:
+            wx.MessageBox(_("All packages successfully installed."), _("Install Succeessful"))
+        else:
+            wx.MessageBox(_("Oh no! A error occurred while installing your packages. Check the log for more details. Make sure no other package manager is running when you try to Install the packages.\n" + \
+            "Another option is installing the packages by hand (Knowledged users only)."), _("Install Error"))
+
+#        if result == wx.ID_YES:
+#            dlg = wx.MessageDialog(None, _("There are two methods for making the packages available. First, mimicing a Repository and informing the OS of it and letting it use the repo to retrieve its updates, " + \
+#                          "or moving the packages directly into the OS'es cache so that the OS thinks its already downloaded them and only needs to install them. This way is easier.  " + \
+#                          "Would you like to use the cache method? Selecting 'No' will use the Repo method."), \
+#                          _("Choose Install method"), wx.YES_NO | wx.ICON_QUESTION)
+#            result = dlg.ShowModal()
+#            dlg.Destroy()
+#            install = True
+#            if result == wx.ID_YES:  # Cache method
+#                dlg = wx.MessageDialog(None, _("You can either move your packages you have downloaded to the cache, or just copy them.\n" + \
+#                               "Moving them will free up space in your project again. Move?\nPlease ensure no package manager is running before continuing! The script will be run next."), \
+#                               _("Move Packages?"), wx.YES_NO | wx.ICON_QUESTION)
+#                result = dlg.ShowModal()
+#                dlg.Destroy()
+#                if result == wx.ID_YES:
+#                    move = True
+#                else:
+#                    move = False
+#                install = project.projects[len(project.projects) - 1].plugin.installCache(project.projects[len(project.projects) -1].dir, 'installcache', move=move)
+#
+#                # Let's install them packages!
+#                if install:  # The cache needs to have been successfully filled.
+#                    projdir = project.projects[len(project.projects) -1].dir
+#                    spacksdir = os.path.join(projdir, 'packages')
+#                    spacks = [x for x in os.listdir(spacksdir) if os.path.isfile(os.path.join(spacksdir, x)) and (os.path.splitext(x)[1] == '.deb')]
+#                    packnames = ' '.join([x[:x.find('_')] for x in spacks])
+#                    #TODO: prompt the user for which of these to install
+#                    if not project.projects[len(project.projects) - 1].plugin.installPacks(packnames):
+#                         wx.MessageBox(_("Oh no! A error occurred while installing your packages. Check the log for more details. Make sure no other package manager is running when you try to Install the packages.\n" + \
+#                         "Another option is installing the packages by hand (Knowledged users only)."), _("Install Error"))
+#                    else:
+#                        log.info(_("Package installation succeeded"))
+
+#            elif result == wx.ID_NO:  # Repo method
+#                wx.MessageBox(_("This feature is not implemented yet. Sorry."),_("Not Implemented"))
+#                #install = project.projects[len(project.projects) - 1].installRepo()
+#            if not install:
+#                wx.MessageBox(_("Oh no! A error occurred when doing the transfer. Check the log for more details. Make sure no other package manager is running when you try to transfer the files.\n" + \
+#                         "Another option is transferring the files by hand (Knowledged users only)."), _("Install Error"))
+#            else:
+#                wx.MessageBox(_("Install finished."), _("Finished"))
 
 
     def OnUpdates(self, event):
@@ -520,16 +594,18 @@
 
         sizer = wx.BoxSizer(wx.VERTICAL)
 
-        btnsizer = wx.BoxSizer(wx.HORIZONTAL)
-        btn = wx.Button(self, wx.ID_CANCEL, _('No'), size=(100, 35))
-        btnsizer.Add(btn, 1)
-        btn = wx.Button(self, wx.ID_OK, _('Yes'), size=(100, 35))
-        btn.SetDefault()
-        btnsizer.Add(btn, 1)
+        btnSizer = wx.StdDialogButtonSizer()
+        btn = wx.Button(self, wx.ID_CANCEL, 'No')
+        btnSizer.SetCancelButton(btn)
+        btnSizer.AddButton(btn)
+        btn = wx.Button(self, wx.ID_OK, 'Yes')
+        btnSizer.SetAffirmativeButton(btn)
+        btnSizer.AddButton(btn)
+        btnSizer.Realize()
 
         sizer.Add(text1, 0, wx.EXPAND|wx.ALL, 5)
         sizer.Add(text2, 0, wx.EXPAND|wx.ALL, 5)
-        sizer.Add(btnsizer, 0, wx.ALIGN_RIGHT | wx.TOP | wx.BOTTOM, 10)
+        sizer.Add(btnSizer, 0, wx.ALIGN_RIGHT | wx.TOP | wx.BOTTOM, 10)
         self.SetSizerAndFit(sizer)
 
 class InstallProjectDialog(wx.Dialog):
@@ -546,32 +622,107 @@
         self.local_repo_radio = wx.RadioButton(panel, -1, _("Create local repository"), (15, 55))
         self.Bind(wx.EVT_RADIOBUTTON, self.OnLocalRepo, self.local_repo_radio)
 
-        self.dir_textctrl = wx.TextCtrl(self, -1, "", (190, 85), (200, 25))
-        self.dir_textctrl.Disable()
-        self.browse_btn = buttons.GenBitmapTextButton(panel, -1, wx.Bitmap(consts.icon_open), _("Save to..."), (40, 80), (140, 30))
+
+        self.browse_btn = filebrowse.DirBrowseButton(self, -1, pos=(35, 80), size=(430, 30))
         self.browse_btn.Disable()
         self.Bind(wx.EVT_BUTTON, self.OnBrowse, self.browse_btn)
 
-        wx.CheckBox(panel, -1, _("Delete packages from project folder after installation"), (5, 125))
+        self.move_checkbox = wx.CheckBox(panel, -1, _("Delete packages from project folder after installation"), (5, 125))
 
-        hbox = wx.BoxSizer(wx.HORIZONTAL)
-        btn = wx.Button(self, -1, 'Cancel', size=(100, 30))
-        hbox.Add(btn, 1)
-        btn = wx.Button(self, -1, 'Continue', size=(100, 30))
-        hbox.Add(btn, 1, wx.LEFT, 5)
+        btnSizer = wx.StdDialogButtonSizer()
+        btn = wx.Button(self, wx.ID_CANCEL, 'Cancel')
+        btnSizer.SetCancelButton(btn)
+        btnSizer.AddButton(btn)
+        btn = wx.Button(self, wx.ID_OK, 'Continue')
+        btnSizer.SetAffirmativeButton(btn)
+        btnSizer.AddButton(btn)
+        btnSizer.Realize()
 
         vbox.Add(panel)
-        vbox.Add(hbox, 1, wx.ALIGN_CENTER | wx.TOP | wx.BOTTOM, 10)
+        vbox.Add(btnSizer, 0, wx.ALIGN_RIGHT | wx.TOP | wx.BOTTOM, 10)
 
         self.SetSizer(vbox)
 
     def OnBrowse(self, evt):
-        print "Browsing..."
+        log.info(_('Browsing: Not implemted.'))
 
     def OnLocalRepo(self, evt):
-        self.dir_textctrl.Enable()
         self.browse_btn.Enable()
 
     def OnSysCache(self, evt):
-        self.dir_textctrl.Disable()
         self.browse_btn.Disable()
+
+class SelectPackagesDialog(wx.Dialog):
+    """Dialog for selection of packages to be installed"""
+    def __init__(self, parent, id, title, items):
+        wx.Dialog.__init__(self, parent, id, title, size=(800, 600))
+
+        vbox = wx.BoxSizer(wx.VERTICAL)
+
+        btnSizer = wx.BoxSizer(wx.HORIZONTAL)
+        btn = wx.Button(self, wx.ID_ANY, 'Select All')
+        self.Bind(wx.EVT_BUTTON, self.OnSelectAll, btn)
+        btnSizer.Add(btn)
+        btn = wx.Button(self, wx.ID_ANY, 'Select None')
+        self.Bind(wx.EVT_BUTTON, self.OnSelectNone, btn)
+        btnSizer.Add(btn)
+
+        vbox.Add(btnSizer, 0, wx.ALIGN_LEFT | wx.TOP | wx.BOTTOM)
+
+        self.check_list = CheckListPanel(self, items)        
+        vbox.Add(self.check_list, 1, wx.EXPAND)
+
+        btnSizer = wx.StdDialogButtonSizer()
+        btn = wx.Button(self, wx.ID_CANCEL, 'Cancel')
+        btnSizer.SetCancelButton(btn)
+        btnSizer.AddButton(btn)
+        btn = wx.Button(self, wx.ID_OK, 'Continue')
+        btnSizer.SetAffirmativeButton(btn)
+        btnSizer.AddButton(btn)
+        btnSizer.Realize()
+
+        vbox.Add(btnSizer, 0, wx.ALIGN_RIGHT | wx.TOP | wx.BOTTOM, 5)
+
+        self.SetSizer(vbox)
+
+    def GetSelected(self):
+        selected = []
+        for index in range(self.check_list.list.GetItemCount()):
+            if self.check_list.list.IsChecked(index):
+               selected.append(self.check_list.list.GetItemText(index))
+        return selected
+
+    def OnSelectAll(self, evt):
+        for index in range(self.check_list.list.GetItemCount()):
+            self.check_list.list.CheckItem(index, True)
+
+    def OnSelectNone(self, evt):
+        for index in range(self.check_list.list.GetItemCount()):
+            self.check_list.list.CheckItem(index, False)
+
+class CheckListCtrl(wx.ListCtrl, CheckListCtrlMixin):
+    def __init__(self, parent):
+        wx.ListCtrl.__init__(self, parent, -1, style=wx.LC_REPORT)
+        CheckListCtrlMixin.__init__(self)
+        self.Bind(wx.EVT_LIST_ITEM_ACTIVATED, self.OnItemActivated)
+
+    def OnItemActivated(self, evt):
+        self.ToggleItem(evt.m_itemIndex)
+
+class CheckListPanel(wx.Panel):
+    def __init__(self, parent, items):
+        wx.Panel.__init__(self, parent, -1)
+
+        self.list = CheckListCtrl(self)
+        sizer = wx.BoxSizer()
+        sizer.Add(self.list, 1, wx.EXPAND)
+        self.SetSizer(sizer)
+
+        self.list.InsertColumn(0, "Package")
+
+        for key, data in items.iteritems():
+            index = self.list.InsertStringItem(sys.maxint, data)
+            self.list.SetItemData(index, key)
+            self.list.CheckItem(index, True)  # Check each item after it is added
+      
+        self.list.SetColumnWidth(0, wx.LIST_AUTOSIZE)

=== modified file 'plugins/Debian.py'
--- plugins/Debian.py	2010-01-01 09:38:24 +0000
+++ plugins/Debian.py	2010-01-06 03:50:25 +0000
@@ -21,7 +21,7 @@
 
 PLUGIN_NAME = 'Debian'
 PLUGIN_TYPE = 'OS'
-PLUGIN_VERSION = '0.92.2'
+PLUGIN_VERSION = '0.92.4'
 PLUGIN_AUTHOR = 'Chris Oliver <excid3@xxxxxxxxx>'
 
 FILE = 'debian.conf'
@@ -268,8 +268,11 @@
             log.error('exit code:%i\n%s' % (run[0], run[1]))
             log.info(_('installCache: failed'))
             return False
-        log.info(_('installCache: transfer success, installing'))
-        run = self.__runRoot('apt-get', 'install %s <\\`tty\\`' % (packnames), term='xterm -hold -e')
+        log.info(_('installCache: transfer success'))
+        return True
+
+    def installPacks(self, packnames):
+        run = self.__runRoot('apt-get', 'install -y %s <\\`tty\\`' % (packnames), term='xterm -hold -e')
         if run[0] != 0:
             log.error('exit code:%i\n%s' % (run[0], run[1]))
             log.info(_('installCache: failed'))
@@ -461,16 +464,23 @@
 
     def __runRoot(self, program, args, term=None):
         root = ''
-        for a in ('gksu', 'gksudo', 'kdesudo'):
+        for a in ('gksu', 'gksudo', 'kdesu', 'kdesudo'):
             if commands.getstatusoutput('which '+a)[0] == 0:
                 root = a
                 break
+        # Give compatible GUI su's a shorter command description
+        if root.startswith('gk'):
+            description = '%s %s' % (program, args)
+            if len(description) > 50:
+                description = '--description \'%s...\'' % (description[:46])
+        else:  # Certain su GUIs do not accept alternate descriptions
+            description = ''
         if root == '': return (64, 'Could not find superuser access')
         try:
             if term:
-                exit = commands.getstatusoutput('%s "%s %s %s"' % (term, root, program, args))
+                exit = commands.getstatusoutput('%s "%s %s %s %s"' % (term, root, description, program, args))
             else:
-                exit = commands.getstatusoutput('%s "%s %s"' % (root, program, args))
+                exit = commands.getstatusoutput('%s %s "%s %s"' % (root, description, program, args))
         except:
             exit = (64, 'Error spawning shell command')
         return exit

=== added directory 'projects/hardy-32-bit-default'
=== added file 'projects/hardy-32-bit-default/debian.conf'
--- projects/hardy-32-bit-default/debian.conf	1970-01-01 00:00:00 +0000
+++ projects/hardy-32-bit-default/debian.conf	2010-01-06 03:50:25 +0000
@@ -0,0 +1,5 @@
+Computer Name: default
+OS Name: Ubuntu
+OS Version: 8.04
+Architecture: 32bit
+Kernel: 2.6.24-16.30

=== added file 'projects/hardy-32-bit-default/hardy-32-bit.keryx'
--- projects/hardy-32-bit-default/hardy-32-bit.keryx	1970-01-01 00:00:00 +0000
+++ projects/hardy-32-bit-default/hardy-32-bit.keryx	2010-01-06 03:50:25 +0000
@@ -0,0 +1,2 @@
+Hardy 32-bit
+Debian

=== added directory 'projects/hardy-32-bit-default/lists'
=== added file 'projects/hardy-32-bit-default/lists/status'
--- projects/hardy-32-bit-default/lists/status	1970-01-01 00:00:00 +0000
+++ projects/hardy-32-bit-default/lists/status	2010-01-06 03:50:25 +0000
@@ -0,0 +1,15138 @@
+Package: xserver-xorg-input-vmmouse
+Status: install ok installed
+Priority: optional
+Section: x11
+Installed-Size: 92
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 1:12.4.3-1ubuntu1
+Replaces: xserver-xorg (<< 6.8.2-35)
+Provides: xserver-xorg-input-2
+Depends: libc6 (>= 2.7-1), xserver-xorg-core (>= 2:1.4)
+Description: X.Org X server -- VMMouse input driver to use with VMWare
+ This package provides the driver for the X11 vmmouse input device.
+ .
+ The VMMouse driver enables support for the special VMMouse protocol
+ that is provided by VMware virtual machines to give absolute pointer
+ positioning.
+ .
+ The vmmouse driver is capable of falling back to the standard "mouse"
+ driver if a VMware virtual machine is not detected. This allows for
+ dual-booting of an operating system from a virtual machine to real hardware
+ without having to edit xorg.conf every time.
+ .
+ More information about X.Org can be found at:
+ <URL:http://www.X.org>
+ <URL:http://xorg.freedesktop.org>
+ <URL:http://lists.freedesktop.org/mailman/listinfo/xorg>
+ .
+ This package is built from the X.org xf86-input-vmmouse driver module.
+Original-Maintainer: Debian X Strike Force <debian-x@xxxxxxxxxxxxxxxx>
+
+Package: tcpd
+Status: install ok installed
+Priority: important
+Section: net
+Installed-Size: 204
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: tcp-wrappers
+Version: 7.6.dbs-14
+Replaces: libwrap0 (<< 7.6-8)
+Depends: libc6 (>= 2.6), libwrap0, debconf (>= 0.5) | debconf-2.0
+Description: Wietse Venema's TCP wrapper utilities
+ Wietse Venema's network logger, also known as TCPD or LOG_TCP.
+ .
+ These programs log the client host name of incoming telnet,
+ ftp, rsh, rlogin, finger etc. requests.
+ .
+ Security options are:
+  - access control per host, domain and/or service;
+  - detection of host name spoofing or host address spoofing;
+  - booby traps to implement an early-warning system.
+Original-Maintainer: Marco d'Itri <md@xxxxxxxx>
+
+Package: libtext-wrapi18n-perl
+Status: install ok installed
+Priority: required
+Section: perl
+Installed-Size: 76
+Maintainer: Anibal Monsalve Salazar <anibal@xxxxxxxxxx>
+Architecture: all
+Version: 0.06-5
+Depends: libtext-charwidth-perl
+Description: internationalized substitute of Text::Wrap
+ This module is a substitution for Text::Wrap, supporting
+ multibyte characters such as UTF-8, EUC-JP, and GB2312, fullwidth
+ characters such as east Asian characters, combining characters
+ such as diacritical marks and Thai, and languages which don't
+ use whitespaces between words such as Chinese and Japanese.
+ .
+ It provides wrap().
+ .
+  Homepage: http://search.cpan.org/~kubota/Text-WrapI18N-0.06/WrapI18N.pm
+
+Package: jfsutils
+Status: install ok installed
+Priority: optional
+Section: admin
+Installed-Size: 1112
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 1.1.11-1build1
+Depends: libc6 (>= 2.5-0ubuntu1), libuuid1
+Description: utilities for managing the JFS filesystem
+ Utilities for managing IBM's Journaled File System (JFS) under Linux.
+ .
+ IBM's journaled file system technology, currently used in IBM
+ enterprise servers, is designed for high-throughput server
+ environments, key to running intranet and other high-performance
+ e-business file servers.
+ .
+ The following utilities are available:
+ fsck.jfs - initiate replay of the JFS transaction log, and check and repair a
+ JFS formatted device.
+ logdump - dump a JFS formatted device's journal log.
+ logredo - "replay" a JFS formatted device's journal log.
+ mkfs.jfs - create a JFS formatted partition.
+ xchkdmp - dump the contents of a JFS fsck log file created with xchklog.
+ xchklog - extract a log from the JFS fsck workspace into a file.
+ xpeek - shell-type JFS file system editor.
+Original-Maintainer: Stefan Hornburg (Racke) <racke@xxxxxxxxxx>
+
+Package: debconf
+Status: install ok installed
+Priority: important
+Section: admin
+Installed-Size: 964
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: all
+Version: 1.5.20
+Replaces: debconf-tiny
+Provides: debconf-2.0
+Depends: debconf-i18n | debconf-english
+Pre-Depends: perl-base (>= 5.6.1-4)
+Recommends: apt-utils (>= 0.5.1)
+Suggests: debconf-doc, debconf-utils, libgnome2-perl, libnet-ldap-perl, libqt-perl, libterm-readline-gnu-perl, perl, whiptail | dialog | gnome-utils
+Conflicts: apt (<< 0.3.12.1), cdebconf (<< 0.96), debconf-tiny, debconf-utils (<< 1.3.22), dialog (<< 0.9b-20020814-1), menu (<= 2.1.3-1), whiptail (<< 0.51.4-11), whiptail-utf8 (<= 0.50.17-13)
+Conffiles:
+ /etc/debconf.conf 8c0619be413824f1fc7698cee0f23811
+ /etc/apt/apt.conf.d/70debconf 7e9d09d5801a42b4926b736b8eeabb73
+ /etc/bash_completion.d/debconf 8fa1862734fbe54d7178aaaa419f5a11
+Description: Debian configuration management system
+ Debconf is a configuration management system for debian packages. Packages
+ use Debconf to ask questions when they are installed.
+Original-Maintainer: Debconf Developers <debconf-devel@xxxxxxxxxxxxxxxxxxxxxxx>
+
+Package: libdjvulibre15
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 2144
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: djvulibre
+Version: 3.5.20-2
+Replaces: libdjvulibre1
+Depends: libc6 (>= 2.6.1-1), libgcc1 (>= 1:4.2.1), libjpeg62, libstdc++6 (>= 4.2.1), xdg-utils
+Conflicts: libdjvulibre1
+Description: Runtime support for the DjVu image format
+ DjVu runtime library and support files.
+Original-Maintainer: Barak A. Pearlmutter <bap@xxxxxxxxxx>
+
+Package: librecode0
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 1304
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: recode
+Version: 3.6-14ubuntu1
+Depends: libc6 (>= 2.7-1)
+Description: Shared library on which recode is based
+ This recoding library converts files between various coded character
+ sets and surface encodings.  The library recognizes or produces more
+ than 300 different character sets and is able to convert files between
+ almost any pair.  Most RFC 1345 character sets, and all `libiconv'
+ character sets, are supported.
+Original-Maintainer: Santiago Vila <sanvila@xxxxxxxxxx>
+
+Package: memtest86+
+Status: install ok installed
+Priority: optional
+Section: misc
+Installed-Size: 228
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 1.70-3ubuntu1
+Suggests: hwtools, memtester, kernel-patch-badram, grub2 (>= 1.95+20070515-1) | grub (>= 0.95+cvs20040624), mtools
+Conffiles:
+ /etc/grub.d/20_memtest86+ 956a9ad577c5bf6ef039ac99bb5ffab9
+Description: thorough real-mode memory tester
+ Memtest86+ scans your RAM for errors.
+ .
+ This tester runs independently of any OS - it is run at computer
+ boot-up, so that it can test *all* of your memory.  You may want to
+ look at `memtester', which allows to test your memory within Linux,
+ but this one won't be able to test your whole RAM.
+ .
+ It can output a list of bad RAM regions usable by the BadRAM kernel
+ patch, so that you can still use you old RAM with one or two bad bits.
+ .
+ Memtest86+ is based on memtest86 3.0, and adds support for recent
+ hardware, as well as a number of general-purpose improvements,
+ including many patches to memtest86 available from various sources.
+ .
+ A convenience script is also provided to make a grub-based floppy or
+ image.
+Original-Maintainer: Yann Dirson <dirson@xxxxxxxxxx>
+
+Package: dash
+Essential: yes
+Status: install ok installed
+Priority: required
+Section: shells
+Installed-Size: 204
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 0.5.4-8ubuntu1
+Depends: debianutils (>= 2.15)
+Pre-Depends: libc6 (>= 2.7-1)
+Description: POSIX-compliant shell
+ The Debian Almquist Shell (dash) is a lightweight POSIX-compliant shell
+ derived from ash.
+ .
+ It can be usefully installed as /bin/sh (because it executes scripts
+ faster than bash), or as the default shell for the superuser.  It
+ depends on fewer libraries than bash, and is therefore less likely to
+ be affected by an upgrade problem or a disk failure. It is also
+ useful for checking the POSIX compliance of scripts.
+Original-Maintainer: Gerrit Pape <pape@xxxxxxxxxxx>
+
+Package: libart-2.0-2
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 148
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: libart-lgpl
+Version: 2.3.20-1
+Depends: libc6 (>= 2.7-1)
+Description: Library of functions for 2D graphics - runtime files
+ A library of functions for 2D graphics supporting a superset of the
+ PostScript imaging model, designed to be integrated with graphics, artwork,
+ and illustration programs. It is written in optimized C, and is fully
+ compatible with C++. With a small footprint of 10,000 lines of code, it is
+ especially suitable for embedded applications.
+Original-Maintainer: Ondřej Surý <ondrej@xxxxxxxxxx>
+
+Package: mktemp
+Essential: yes
+Status: install ok installed
+Priority: required
+Section: utils
+Installed-Size: 60
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 1.5-5ubuntu2
+Replaces: debianutils (<< 2.16)
+Pre-Depends: libc6 (>= 2.7-1)
+Description: Makes unique filenames for temporary files
+ Mktemp is a simple utility designed to make temporary file handling
+ in shells scripts be safe and simple.
+Original-Maintainer: Clint Adams <schizo@xxxxxxxxxx>
+
+Package: libxdmcp6
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 76
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: libxdmcp
+Version: 1:1.0.2-2
+Depends: libc6 (>= 2.5-0ubuntu1), x11-common (>= 1:7.0.0)
+Description: X11 Display Manager Control Protocol library
+ This package provides the main interface to the X11 display manager control
+ protocol library, which allows for remote logins to display managers.
+ .
+ More information about X.Org can be found at:
+ <URL:http://xorg.freedesktop.org>
+ <URL:http://lists.freedesktop.org/mailman/listinfo/xorg>
+Original-Maintainer: Debian X Strike Force <debian-x@xxxxxxxxxxxxxxxx>
+
+Package: libgl1-mesa-dri
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 34296
+Maintainer: Ubuntu Core Developers <ubuntu-devel@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: mesa
+Version: 7.0.3~rc2-1ubuntu3
+Replaces: xlibmesa-dri (<< 1:7.0.0)
+Depends: libc6 (>= 2.4), libdrm2 (>= 2.3.0), libexpat1 (>= 1.95.8), libgl1-mesa-glx (= 7.0.3~rc2-1ubuntu3)
+Suggests: libglide3
+Conflicts: xlibmesa-dri (<< 1:7.0.0)
+Description: A free implementation of the OpenGL API -- DRI modules
+ This version of Mesa provides GLX and DRI capabilities: it is capable of
+ both direct and indirect rendering.  For direct rendering, it can use DRI
+ modules from the libgl1-mesa-dri package to accelerate drawing.
+ .
+ This package does not include the OpenGL library itself, only the DRI
+ modules for accelerating direct rendering.
+ .
+ For a complete description of Mesa, please look at the
+ libgl1-mesa-swx11 package.
+ .
+ The tdfx DRI module needs libglide3 to enable direct rendering.
+Homepage: http://mesa3d.sourceforge.net/
+Original-Maintainer: Debian X Strike Force <debian-x@xxxxxxxxxxxxxxxx>
+
+Package: esound-common
+Status: install ok installed
+Priority: optional
+Section: sound
+Installed-Size: 100
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: all
+Source: esound
+Version: 0.2.38-0ubuntu9
+Conffiles:
+ /etc/esound/esd.conf 22fcad1ca71ba243bdebd9de294a31ba
+Description: Enlightened Sound Daemon - Common files
+ This program is designed to mix together several digitized
+ audio streams for playback by a single device.
+ .
+ This package contains the documentation and configuration files.
+Original-Maintainer: Ryan Murray <rmurray@xxxxxxxxxx>
+
+Package: coreutils
+Essential: yes
+Status: install ok installed
+Priority: required
+Section: utils
+Installed-Size: 10688
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 6.10-3ubuntu2
+Replaces: debianutils (<= 2.3.1), dpkg (<< 1.13.2), fileutils, shellutils, stat, textutils
+Provides: fileutils, shellutils, textutils
+Pre-Depends: libacl1 (>= 2.2.11-1), libc6 (>= 2.7-1), libselinux1
+Conflicts: stat
+Description: The GNU core utilities
+ This package contains the essential basic system utilities.
+ .
+ Specifically, this package includes:
+ basename cat chgrp chmod chown chroot cksum comm cp csplit cut date dd df dir
+ dircolors dirname du echo env expand expr factor false fmt fold groups head
+ hostid id install join link ln logname ls md5sum mkdir mkfifo mknod mv nice nl
+ nohup od paste pathchk pinky pr printenv printf ptx pwd readlink rm rmdir
+ sha1sum seq shred sleep sort split stat stty sum sync tac tail tee test touch
+ tr true tsort tty uname unexpand uniq unlink users vdir wc who whoami yes
+Original-Maintainer: Michael Stone <mstone@xxxxxxxxxx>
+
+Package: cupsddk
+Status: install ok installed
+Priority: optional
+Section: text
+Installed-Size: 560
+Maintainer: Ubuntu MOTU Developers <ubuntu-motu@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 1.2.0-0ubuntu1
+Depends: libc6 (>= 2.6-1), libcomerr2 (>= 1.33-3), libcupsys2 (>= 1.3.0), libgcc1 (>= 1:4.2-20070516), libgnutls13 (>= 1.6.3-0), libkrb53 (>= 1.6.dfsg.1), libstdc++6 (>= 4.2-20070516), zlib1g (>= 1:1.2.3.3.dfsg-1), cupsddk-drivers
+Description: CUPS Driver Development Kit
+ The CUPS Driver Development Kit (DDK) provides a suite of
+ standard drivers, a PPD file compiler, and other utilities that
+ can be used to develop printer drivers for CUPS and other
+ printing environments.  CUPS provides a portable printing layer
+ for UNIX(r)-based operating systems.  The CUPS DDK provides the
+ means for mass-producing PPD files and drivers/filters for
+ CUPS-based printer drivers.
+ .
+ This package should be installed for creating PPD files and for
+  developing printer drivers.
+Original-Maintainer: Till Kamppeter <till.kamppeter@xxxxxxxxx>
+
+Package: libsane
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 8588
+Maintainer: Ubuntu Core developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: sane-backends
+Version: 1.0.19-1ubuntu3
+Replaces: libsane-extras (<< 1.0.18.14)
+Depends: adduser (>= 3.47), libc6 (>= 2.7-1), libexif12, libgphoto2-2 (>= 2.4.0), libgphoto2-port0 (>= 2.4.0), libieee1284-3, libjpeg62, libtiff4, libusb-0.1-4 (>= 2:0.1.12), udev (>= 0.88-1) | makedev (>= 2.3.1-58)
+Recommends: sane-utils (>= 1.0.19-1ubuntu3)
+Suggests: hplip, hpoj, libsane-extras (>= 1.0.19.1)
+Conffiles:
+ /etc/modprobe.d/libsane ca2a722bce32d218ac6049c3b50c7b85
+ /etc/sane.d/abaton.conf 51591e7ab98851effab49089323cb160
+ /etc/sane.d/agfafocus.conf f763f1f31d26507986aad58ca02f79f9
+ /etc/sane.d/apple.conf 602eda3ecedd81ef751d9241becb9142
+ /etc/sane.d/artec.conf 1b87eeb6069e6f5ac7b5f0cc4bf48083
+ /etc/sane.d/artec_eplus48u.conf 3672fe16e6b14a124ad74acd47941be9
+ /etc/sane.d/avision.conf ace6554933c43240c12b1fd56c38e398
+ /etc/sane.d/bh.conf ed8e137983ae58a7bf038180b29737bd
+ /etc/sane.d/canon.conf 4afe1a9ccf3c40ff7b667ac7dfb1de25
+ /etc/sane.d/canon630u.conf 5fae93df3328f1915e3d26f77a8c3b9d
+ /etc/sane.d/cardscan.conf c7dc4545531be434d6e126529f2c3a82
+ /etc/sane.d/coolscan.conf b5a49230bc9b80a4358d966255d4697a
+ /etc/sane.d/coolscan2.conf e9039d4f201acacca70e8964ec22ee70
+ /etc/sane.d/dc25.conf 0659d0dee2b39c585b6ebc682af0dbd9
+ /etc/sane.d/dmc.conf 0731b2373c97cc98c5c42dd56e7fb05c
+ /etc/sane.d/epjitsu.conf 12e7eac3961245329333e55349e04d2e
+ /etc/sane.d/epson.conf 318ed78f38b29c99e478cbc7efc8ff14
+ /etc/sane.d/epson2.conf fb0befe1041db6a1b6a0813c0c8fcf1c
+ /etc/sane.d/fujitsu.conf dadd07eb6394bbb3d2c4af60594b74ef
+ /etc/sane.d/genesys.conf 7aaf7732969e3445ec6a95e81f88239e
+ /etc/sane.d/gt68xx.conf 8a505a6137906110e7866b6e155d4667
+ /etc/sane.d/hp.conf 5328dfe188ece714bf9fdb7e26dc9d00
+ /etc/sane.d/hp3900.conf 253cc77f586f0e5c8674b571397f0183
+ /etc/sane.d/hp4200.conf 0656916d9805c3af1f81424354082501
+ /etc/sane.d/hp5400.conf 25848f289fb76aeb7f78e29ab323dbf8
+ /etc/sane.d/hs2p.conf a7b07bd2a66b8a562ccb64da03bd47da
+ /etc/sane.d/ibm.conf d5eab60adbaf729bb5bf781fc4c5409d
+ /etc/sane.d/leo.conf 008b9b3cad3c7073aa5331a453e68cd6
+ /etc/sane.d/lexmark.conf c04785d832c5ffd42a9fb5aedc0a2153
+ /etc/sane.d/ma1509.conf 73a9fd7af5924e04054f43e2708f5059
+ /etc/sane.d/matsushita.conf fe9a8941cd52c7e012724122d67a98e6
+ /etc/sane.d/microtek.conf 940c8db7e01ccaa6f2c5be2ca020ddf1
+ /etc/sane.d/microtek2.conf 75cb498c51441db57932a4895f7f0d96
+ /etc/sane.d/mustek.conf 33284fd785df74d394b9e30a4ec8283e
+ /etc/sane.d/mustek_usb.conf f4080c5eacaf30b4ed871a5330960696
+ /etc/sane.d/nec.conf 5eed67a9759c991553fa3055af023a33
+ /etc/sane.d/pie.conf 7bdb319bd61b19389e93ed85a1ed85d1
+ /etc/sane.d/plustek.conf f329323c5ed857873510e38233f1afcf
+ /etc/sane.d/ricoh.conf b1891143384a7308ec17d9e6ac836201
+ /etc/sane.d/s9036.conf 5eed67a9759c991553fa3055af023a33
+ /etc/sane.d/sceptre.conf 9d7e8954714b47042b849ddbd2530973
+ /etc/sane.d/sharp.conf d16cb589cdceb30d4523334063ddf040
+ /etc/sane.d/sm3840.conf 9b61359cbcc14b9be4d687b80b772bea
+ /etc/sane.d/snapscan.conf b349efcbcec257f5fca8372f1e47e7e0
+ /etc/sane.d/sp15c.conf 74fd71c4ea2c8c58bbaa2cecfee56f7c
+ /etc/sane.d/st400.conf febd1d7966858a4a0352a2fe2c1abfa0
+ /etc/sane.d/stv680.conf 1a5a8d37f0de964bab25b3908fa907d5
+ /etc/sane.d/tamarack.conf 93b1a500916dcfabd8a1c288029a5502
+ /etc/sane.d/teco1.conf 7976c7a3dd90fe100f30a23a29aaea89
+ /etc/sane.d/teco2.conf 1f873f79332e99cb0cd2b9eba938ac3b
+ /etc/sane.d/teco3.conf 7b632784a85ec6ead7d26e8fd195dea5
+ /etc/sane.d/test.conf eaccee9d3fb610a691705ddf94b9ec11
+ /etc/sane.d/u12.conf 9ab31cd28e79474973fc02ccf1c06b99
+ /etc/sane.d/umax.conf 5bcadfd7842926832de6d6e29d23558d
+ /etc/sane.d/umax_pp.conf 926aec7aab8c8a577016afe625a73d83
+ /etc/sane.d/umax1220u.conf 2d36f1f6c15bbfeaf2049d59dcfefe05
+ /etc/sane.d/plustek_pp.conf 327941a5240e699e3251d74192f4f299
+ /etc/sane.d/dc210.conf 821754802fb212acc9f48c7dd93ddaa1
+ /etc/sane.d/dc240.conf 821754802fb212acc9f48c7dd93ddaa1
+ /etc/sane.d/canon_pp.conf 2ecfac7c883bc980aba880f424abb8ad
+ /etc/sane.d/hpsj5s.conf 0e969889a4509e62ef352a0222d2620e
+ /etc/sane.d/mustek_pp.conf c9d10da50e4b77dcc73b97f67a81a89a
+ /etc/sane.d/dell1600n_net.conf ce26ec480900a2420d14d5f2c43f07eb
+ /etc/sane.d/gphoto2.conf ca55d23d02774d6eea321dcbd4099e5e
+ /etc/sane.d/qcam.conf 7a30e22cd391b7992646723df280f4fe
+ /etc/sane.d/v4l.conf c68d472ee915c19d73f255623f4e0223
+ /etc/sane.d/net.conf 9e5860565491b3157e3c6e0af682b7a2
+ /etc/sane.d/dll.conf f0f27068d824aee5f56edb27b412f738
+Description: API library for scanners
+ SANE stands for "Scanner Access Now Easy" and is an application
+ programming interface (API) that provides standardized access to any
+ raster image scanner hardware (flatbed scanner, hand-held scanner,
+ video- and still-cameras, frame-grabbers, etc.). The SANE standard is
+ free and its discussion and development are open to everybody. The
+ current source code is written to support several operating systems,
+ including GNU/Linux, OS/2, Win32 and various Unices and is available
+ under the GNU General Public License (commercial applications and
+ backends are welcome, too, however).
+ .
+ This package includes the backends for many scanners. A libsane-extras
+ package containing some not-yet-included backends is available separately.
+ .
+ Graphical frontends for sane are available in the packages sane and
+ xsane. Command line frontend scanimage, saned and sane-find-scanner are
+ available in the sane-utils package.
+Homepage: http://www.sane-project.org
+Original-Maintainer: Julien BLACHE <jblache@xxxxxxxxxx>
+
+Package: sudo
+Status: install ok installed
+Priority: optional
+Section: admin
+Installed-Size: 424
+Maintainer: Martin Pitt <martin.pitt@xxxxxxxxxx>
+Architecture: i386
+Version: 1.6.9p10-1ubuntu3.2
+Replaces: sudo-ldap
+Depends: libc6 (>= 2.4), libpam-modules, libpam0g (>= 0.99.7.1)
+Conflicts: sudo-ldap
+Conffiles:
+ /etc/pam.d/sudo e3aaa79c2a00244cdfd17117127f8993
+Description: Provide limited super user privileges to specific users
+ Sudo is a program designed to allow a sysadmin to give limited root
+ privileges to users and log root activity.  The basic philosophy is to give
+ as few privileges as possible but still allow people to get their work done.
+ .
+ This version is built with minimal shared library dependencies, use the
+ sudo-ldap package instead if you need LDAP support.
+Original-Maintainer: Bdale Garbee <bdale@xxxxxxx>
+
+Package: libfreetype6
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 640
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: freetype
+Version: 2.3.5-1ubuntu4
+Replaces: freetype0, freetype1
+Depends: libc6 (>= 2.6-1), zlib1g (>= 1:1.2.3.3.dfsg-1)
+Suggests: libfreetype6-dev
+Conflicts: freetype, xpdf-reader (<< 1.00-4)
+Description: FreeType 2 font engine, shared library files
+ The FreeType project is a team of volunteers who develop free,
+ portable and high-quality software solutions for digital typography.
+ They specifically target embedded systems and focus on bringing small,
+ efficient and ubiquitous products.
+ .
+ The FreeType 2 library is their new software font engine.  It has been
+ designed to provide the following important features:
+  * A universal and simple API to manage font files
+  * Support for several font formats through loadable modules
+  * High-quality anti-aliasing
+  * High portability & performance
+ .
+ Supported font formats include:
+  * TrueType files (.ttf) and collections (.ttc)
+  * Type 1 font files both in ASCII (.pfa) or binary (.pfb) format
+  * Type 1 Multiple Master fonts.  The FreeType 2 API also provides
+    routines to manage design instances easily
+  * Type 1 CID-keyed fonts
+  * OpenType/CFF (.otf) fonts
+  * CFF/Type 2 fonts
+  * Adobe CEF fonts (.cef), used to embed fonts in SVG documents with
+    the Adobe SVG viewer plugin.
+  * Windows FNT/FON bitmap fonts
+ .
+ This package contains the files needed to run programs that use the
+ FreeType 2 library.
+ .
+  Home Page: http://www.freetype.org/
+  Authors: David Turner   <david.turner@xxxxxxxxxxxx>
+           Robert Wilhelm <robert.wilhelm@xxxxxxxxxxxx>
+           Werner Lemberg <werner.lemberg@xxxxxxxxxxxx>
+Original-Maintainer: Steve Langasek <vorlon@xxxxxxxxxx>
+
+Package: debianutils
+Essential: yes
+Status: install ok installed
+Priority: required
+Section: utils
+Installed-Size: 276
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 2.28.2-0ubuntu1
+Pre-Depends: coreutils (>= 4.5.8-1), libc6 (>= 2.7-1), mktemp
+Description: Miscellaneous utilities specific to Debian
+ This package provides a number of small utilities which are used
+ primarily by the installation scripts of Debian packages, although
+ you may use them directly.
+ .
+ The specific utilities included are: installkernel mkboot run-parts
+ savelog sensible-browser sensible-editor sensible-pager tempfile
+ which.
+Original-Maintainer: Clint Adams <schizo@xxxxxxxxxx>
+
+Package: libsysfs2
+Status: install ok installed
+Priority: important
+Section: libs
+Installed-Size: 104
+Maintainer: Martin Pitt <martin.pitt@xxxxxxxxxx>
+Architecture: i386
+Source: sysfsutils
+Version: 2.1.0-4
+Depends: libc6 (>= 2.7-1)
+Description: interface library to sysfs
+ Sysfs is a virtual file system in Linux kernel 2.5+ that provides a
+ tree of system devices. libsysfs provides a stable programming
+ interface to sysfs and eases querying system devices and their
+ attributes.
+ .
+ The package sysfsutils contains frontend programs that use this
+ library. Development files and C examples are provided by the package
+ libsysfs-dev.
+Original-Maintainer: Martin Pitt <mpitt@xxxxxxxxxx>
+
+Package: openprinting-ppds
+Status: install ok installed
+Priority: optional
+Section: text
+Installed-Size: 5628
+Maintainer: ubuntu-devel@xxxxxxxxxxxxxxxx
+Architecture: all
+Source: foomatic-db
+Version: 20080211-0ubuntu1
+Replaces: linuxprinting.org-ppds (<< 20070207-0ubuntu1)
+Provides: linuxprinting.org-ppds
+Suggests: cupsys, foomatic-filters-ppds, hpijs-ppds, openprinting-ppds-extra
+Conflicts: hp-ppd (<= 0.5), linuxprinting.org-ppds (<< 20070207-0ubuntu1)
+Description: OpenPrinting printer support - PostScript PPD files
+ This package includes a collection of free PostScript Printer Description
+ files for PostScript (and clone) printers from various manufacturers, as
+ distributed by OpenPrinting.
+ .
+ Note that these are only the PPDs for the most common PostScript printers,
+ for more special models install the openprinting-ppds-extra package.
+ .
+ If you have non-PostScript printers, the foomatic-db and foomatic-db-hpijs
+ packages are the ones you need; this package won't be of much help to you.
+ .
+ Home Page: http://www.openprinting.org/
+Original-Maintainer: Chris Lawrence <lawrencc@xxxxxxxxxx>
+
+Package: language-pack-fr-base
+Status: install ok installed
+Priority: optional
+Section: translations
+Installed-Size: 9040
+Maintainer: Language pack maintainers <language-packs@xxxxxxxxxx>
+Architecture: all
+Version: 1:8.04+20080527
+Replaces: language-pack-fr (<< 1:8.04+20080527), language-pack-fr-base (<< 1:8.04+20080527), language-pack-gnome-fr-base (<< 1:8.04+20080527), language-pack-kde-fr-base (<< 1:8.04+20080527)
+Depends: language-pack-fr (>= 1:8.04+20080527), locales (>= 2.3.6)
+Pre-Depends: dpkg (>= 1.10.27ubuntu1)
+Recommends: language-support-fr
+Conflicts: language-pack-fr (<< 1:8.04+20080527)
+Description: translations for language French
+ Translation data for all supported packages for:
+ French
+ .
+ This package provides the bulk of translation data and is updated
+ only seldom. language-pack-fr provides frequent
+ translation updates, so you should install this as well.
+ .
+ Please note that you should install language-support-fr
+ to get full support for this language (spell checkers, OpenOffice
+ locale packages, etc.).
+
+Package: finger
+Status: install ok installed
+Priority: standard
+Section: net
+Installed-Size: 76
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: bsd-finger
+Version: 0.17-11
+Replaces: netstd
+Depends: libc6 (>= 2.5-5)
+Description: user information lookup program
+ finger displays information about the system users.
+Original-Maintainer: Anibal Monsalve Salazar <anibal@xxxxxxxxxx>
+
+Package: libxml-parser-perl
+Status: install ok installed
+Priority: optional
+Section: perl
+Installed-Size: 740
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 2.34-4.3
+Depends: perlapi-5.8.8, perl (>= 5.8.8-7ubuntu2), liburi-perl, libwww-perl, libc6 (>= 2.6-1), libexpat1 (>= 1.95.8)
+Description: Perl module for parsing XML files
+ This module provides ways to parse XML documents.  It is built on top
+ of XML::Parser::Expat, which is a lower level interface to James
+ Clark's expat library.  Each call to one of the parsing methods
+ creates a new instance of XML::Parser::Expat which is then used to
+ parse the document.  Expat options may be provided when the
+ XML::Parser object is created.  These options are then passed on to
+ the Expat object on each parse call.  They can also be given as extra
+ arguments to the parse methods, in which case they override options
+ given at XML::Parser creation time.
+ .
+ The behavior of the parser is controlled either by Style and/or
+ Handlers options, or by setHandlers method.  These all provide
+ mechanisms for XML::Parser to set the handlers needed by
+ XML::Parser::Expat.  If neither Style nor Handlers are specified,
+ then parsing just checks the document for being well-formed.
+ .
+ When underlying handlers get called, they receive as their first
+ parameter the Expat object, not the Parser object.
+Original-Maintainer: Debian XML/SGML Group <debian-xml-sgml-pkgs@xxxxxxxxxxxxxxxxxxxxxxx>
+
+Package: libxmuu1
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 64
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: libxmu
+Version: 2:1.0.4-1
+Depends: libc6 (>= 2.7-1), libx11-6, x11-common
+Description: X11 miscellaneous micro-utility library
+ libXmuu provides a set of miscellaneous utility convenience functions for X
+ libraries to use.  It is a lighter version of libXmu that does not depend
+ on libXt or libXext; for more information on libXmu, see libxmu6.
+ .
+ More information about X.Org can be found at:
+ <URL:http://xorg.freedesktop.org>
+ <URL:http://lists.freedesktop.org/mailman/listinfo/xorg>
+Original-Maintainer: Debian X Strike Force <debian-x@xxxxxxxxxxxxxxxx>
+
+Package: gdb
+Status: install ok installed
+Priority: optional
+Section: devel
+Installed-Size: 6068
+Maintainer: Ubuntu Core developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 6.8-1ubuntu2
+Replaces: gdb-arm, insight (<< 6.1+cvs.2004.04.07-1)
+Depends: libc6 (>= 2.4), libexpat1 (>= 1.95.8), libncurses5 (>= 5.6+20071006-3), libreadline5 (>= 5.2)
+Suggests: gdb-doc
+Conflicts: gdb-arm
+Description: The GNU Debugger
+ GDB is a source-level debugger, capable of breaking programs at
+ any specific line, displaying variable values, and determining
+ where errors occurred. Currently, it works for C, C++, Fortran,
+ Modula 2 and Java programs. A must-have for any serious
+ programmer.
+Original-Maintainer: Daniel Jacobowitz <dan@xxxxxxxxxx>
+
+Package: initramfs-tools
+Status: install ok installed
+Priority: optional
+Section: utils
+Installed-Size: 372
+Maintainer: Ubuntu Kernel Team <kernel-team@xxxxxxxxxxxxxxxx>
+Architecture: all
+Version: 0.85eubuntu39.1
+Provides: linux-initramfs-tool
+Depends: busybox-initramfs, cpio, klibc-utils (>= 1.4.19-2), module-init-tools, udev (>= 117-5)
+Conffiles:
+ /etc/initramfs-tools/initramfs.conf 296b675c518585686980060dc68e300f
+ /etc/initramfs-tools/update-initramfs.conf 47add5605b5fe94675f6b13df3a3e7e4
+Description: tools for generating an initramfs
+ This package contains tools to create and boot an initramfs for packaged 2.6
+ Linux kernel. The initramfs is a gzipped cpio archive. At boot time, the
+ kernel unpacks that archive into RAM, mounts and uses it as initial root file
+ system. The mounting of the real root file system occurs in early user space.
+ klibc provides utilities to setup root. Having the root on EVMS, MD, LVM2,
+ LUKS or NFS is also supported.
+ Any boot loader with initrd support is able to load an initramfs archive.
+Original-Maintainer: Debian kernel team <debian-kernel@xxxxxxxxxxxxxxxx>
+
+Package: makedev
+Status: install ok installed
+Priority: required
+Section: admin
+Installed-Size: 132
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: all
+Version: 2.3.1-84ubuntu1
+Depends: base-passwd (>= 3.0.4)
+Conflicts: udev (<= 0.024-7)
+Description: creates device files in /dev
+ The MAKEDEV executable is used to create device files, often in /dev.
+ .
+ Device files are special files through which applications can interact
+ with hardware.
+Original-Maintainer: Bdale Garbee <bdale@xxxxxxx>
+
+Package: laptop-detect
+Status: install ok installed
+Priority: important
+Section: utils
+Installed-Size: 56
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 0.13.2ubuntu1
+Depends: dmidecode (>> 2.8-2)
+Description: attempt to detect a laptop
+ Laptop mode attempts to determine whether it is being run on a laptop or a
+ desktop and appraises its caller of this.
+Original-Maintainer: Thom May <thom@xxxxxxxxxx>
+
+Package: cups-pdf
+Status: install ok installed
+Priority: optional
+Section: graphics
+Installed-Size: 252
+Maintainer: Ubuntu MOTU Developers <ubuntu-motu@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 2.4.6-4ubuntu2
+Depends: cupsys-client, ghostscript | gs-esp | gs-gpl, libc6 (>= 2.7-1), libpaper-utils
+Pre-Depends: cupsys (>= 1.1.15)
+Suggests: system-config-printer-gnome | system-config-printer-kde
+Enhances: cupsys
+Conffiles:
+ /etc/cups/cups-pdf.conf fc8ef4fd6e3fef1588331a5c5118c8d6
+Description: PDF printer for CUPS
+ CUPS-PDF provides a PDF Writer backend to CUPS. This can be used as a
+ virtual printer in a paperless network or to perform testing on CUPS.
+ .
+ Documents are written to a configurable directory (by default to ~/PDF)
+ or can be further manipulated by a post-processing command.
+ .
+ Homepage:  http://cip.physik.uni-wuerzburg.de/~vrbehr/cups-pdf/
+Original-Maintainer: Debian CUPS Maintainers <pkg-cups-devel@xxxxxxxxxxxxxxxxxxxxxxx>
+
+Package: libxml2
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 1512
+Maintainer: Ubuntu Core developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 2.6.31.dfsg-2ubuntu1
+Depends: libc6 (>= 2.7-1), zlib1g (>= 1:1.2.3.3.dfsg-1)
+Recommends: xml-core
+Conflicts: libxslt1.1 (<= 1.1.12-8)
+Description: GNOME XML library
+ XML is a metalanguage to let you design your own markup language.
+ A regular markup language defines a way to describe information in
+ a certain class of documents (eg HTML). XML lets you define your
+ own customized markup languages for many classes of document. It
+ can do this because it's written in SGML, the international standard
+ metalanguage for markup languages.
+ .
+ This package provides a library providing an extensive API to handle
+ such XML data files.
+Original-Maintainer: Debian XML/SGML Group <debian-xml-sgml-pkgs@xxxxxxxxxxxxxxxxxxxxxxx>
+
+Package: x11-xkb-utils
+Status: install ok installed
+Priority: optional
+Section: x11
+Installed-Size: 444
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 7.3+1
+Replaces: xbase-clients (<= 1:7.2.ds2-3), setxkbmap, xkbcomp, xkbevd, xkbprint, xkbutils
+Depends: libc6 (>= 2.6.1-1), libice6 (>= 1:1.0.0), libsm6, libx11-6, libxaw7, libxkbfile1, libxmu6, libxt6, cpp
+Pre-Depends: x11-common (>= 1:7.0.0)
+Conflicts: setxkbmap, xkbcomp, xkbevd, xkbprint, xkbutils
+Description: X11 XKB utilities
+ xkbutils contains a number of client-side utilities for XKB, the X11
+ keyboard extension.
+ .
+ setxkbmap is a tool to query and change the current XKB map.
+ .
+ xkbbell generates a bell event through the keyboard.
+ .
+ xkbcomp is a tool to compile XKB definitions into map files the server
+ can use.
+ .
+ xkbevd is an experimental tool to listen for certain XKB events and execute
+ defined triggers when actions occur.
+ .
+ xkbprint is a tool to generate an image with the physical representation
+ of the keyboard as XKB sees it.
+ .
+ xkbvleds shows the changing status of keyboard LEDs.
+ .
+ xkbwatch shows the changing status of modifiers and LEDs.
+Original-Maintainer: Debian X Strike Force <debian-x@xxxxxxxxxxxxxxxx>
+
+Package: telnet
+Status: install ok installed
+Priority: standard
+Section: net
+Installed-Size: 184
+Maintainer: Ubuntu Core Developers <ubuntu-devel@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: netkit-telnet
+Version: 0.17-35ubuntu1
+Replaces: netstd
+Provides: telnet-client
+Depends: netbase, libc6 (>= 2.5-0ubuntu1), libgcc1 (>= 1:4.1.1-21ubuntu1), libncurses5 (>= 5.4-5), libstdc++6 (>= 4.1.1-21ubuntu1)
+Description: The telnet client
+ The telnet command is used for interactive communication with another host
+ using the TELNET protocol.
+Original-Maintainer: Alberto Gonzalez Iniesta <agi@xxxxxxxxxxx>
+
+Package: xserver-xorg-video-amd
+Status: install ok installed
+Priority: extra
+Section: x11
+Installed-Size: 56
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: xserver-xorg-video-geode
+Version: 2.9.0-1ubuntu2.4
+Replaces: xserver-xorg-video-geode (<< 2.9.0-1ubuntu2.2)
+Depends: xserver-xorg-video-geode
+Description: Geode GX2/LX display driver (dummy transitional package)
+ This transitional package helps users of the existing AMD driver to update
+ their X.org setup. It can safely be removed after the upgrade is completed.
+ .
+ If you are using a static xorg.conf, edit the Device section and change
+ the Driver value from "amd" to "geode" before purging this package.
+ .
+ In all other cases, you can safely purge this package immediately.
+Original-Maintainer: Martin-Éric Racine <q-funk@xxxxxx>
+
+Package: login
+Essential: yes
+Status: install ok installed
+Priority: required
+Section: admin
+Installed-Size: 2852
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: shadow
+Version: 1:4.0.18.2-1ubuntu2
+Replaces: manpages-de (<< 0.4-10), manpages-es-extra (<< 0.8a-15), manpages-fi (<< 0.2-4), manpages-fr (<< 1.64.0-1), manpages-hu (<< 20010119-5), manpages-it (<< 0.3.4-2), manpages-ja (<< 0.5.0.0.20050915-1), manpages-ko (<< 20050219-2), manpages-tr, manpages-zh
+Depends: libpam-modules (>= 0.72-5)
+Pre-Depends: libc6 (>= 2.7-1), libpam-runtime (>= 0.76-14), libpam0g (>= 0.99.7.1)
+Conflicts: amavisd-new (<< 2.3.3-8), backupninja (<< 0.9.3-5), echolot (<< 2.1.8-4), gnunet (<< 0.7.0c-2), python-4suite (<< 0.99cvs20060405-1)
+Conffiles:
+ /etc/pam.d/login 3b9b6c172c9ea1db97b27a51361ff8c8
+ /etc/pam.d/su 7309fb874571fe5447321b43448a50b3
+ /etc/login.defs dfe44299100d6d861a422d72f6062f86
+ /etc/securetty e7ad3611118d500f636279eb6d0db463
+Description: system login tools
+ These tools are required to be able to login and use your system. The
+ login program invokes your user shell and enables command execution. The
+ newgrp program is used to change your effective group ID (useful for
+ workgroup type situations). The su program allows changing your effective
+ user ID (useful being able to execute commands as another user).
+Original-Maintainer: Shadow package maintainers <pkg-shadow-devel@xxxxxxxxxxxxxxxxxxxxxxx>
+
+Package: gpgv
+Status: install ok installed
+Priority: important
+Section: utils
+Installed-Size: 300
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: gnupg
+Version: 1.4.6-2ubuntu5
+Replaces: gnupg (<< 1.4.5-2)
+Depends: libc6 (>= 2.7-1), zlib1g (>= 1:1.2.3.3.dfsg-1)
+Suggests: gnupg
+Description: GNU privacy guard - signature verification tool
+ GnuPG is GNU's tool for secure communication and data storage.
+ .
+ gpgv is a stripped-down version of gnupg which is only able to check
+ signatures.  It is smaller than the full-blown gnupg and uses a
+ different (and simpler) way to check that the public keys used to
+ make the signature are trustworthy.
+Original-Maintainer: James Troup <james@xxxxxxxxxx>
+
+Package: libxplc0.3.13
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 104
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: xplc
+Version: 0.3.13-1build1
+Depends: libc6 (>= 2.5-5), libgcc1 (>= 1:4.2-20070516), libstdc++6 (>= 4.2-20070516)
+Description: Light weight component system
+ XPLC ("Cross-Platform Lightweight Components") is a component system that
+ will provide extensibility and reusability both inside and between
+ applications, while being portable across platforms (and languages) and
+ having the lowest possible overhead (both in machine resources and
+ programming effort).
+Original-Maintainer: Simon Law <sfllaw@xxxxxxxxxx>
+
+Package: libdbus-1-3
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 296
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: dbus
+Version: 1.1.20-1ubuntu2
+Depends: libc6 (>= 2.4)
+Recommends: dbus
+Conflicts: dbus (<< 0.60)
+Description: simple interprocess messaging system
+ D-Bus is a message bus, used for sending messages between applications.
+ Conceptually, it fits somewhere in between raw sockets and CORBA in
+ terms of complexity.
+ .
+ D-Bus supports broadcast messages, asynchronous messages (thus
+ decreasing latency), authentication, and more. It is designed to be
+ low-overhead; messages are sent using a binary protocol, not using
+ XML. D-Bus also supports a method call mapping for its messages, but
+ it is not required; this makes using the system quite simple.
+ .
+ It comes with several bindings, including GLib, Python, Qt and Java.
+ .
+ The daemon can be found in the dbus package.
+Homepage: http://dbus.freedesktop.org/
+Original-Maintainer: Utopia Maintenance Team <pkg-utopia-maintainers@xxxxxxxxxxxxxxxxxxxxxxx>
+
+Package: upstart-logd
+Status: install ok installed
+Priority: required
+Section: base
+Installed-Size: 92
+Maintainer: Scott James Remnant <scott@xxxxxxxxxx>
+Architecture: i386
+Source: upstart
+Version: 0.3.9-2
+Depends: libc6 (>= 2.4), upstart (= 0.3.9-2)
+Conffiles:
+ /etc/event.d/logd 473a282ed81dce21904fab6caa599b60
+Description: boot logging daemon
+ This package contains the logd daemon used by /sbin/init to log output
+ of jobs started with "console logged" in their definitions.
+
+Package: gettext-base
+Status: install ok installed
+Priority: standard
+Section: utils
+Installed-Size: 972
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: gettext
+Version: 0.17-2ubuntu1
+Replaces: gettext (<= 0.12.1-1)
+Provides: libasprintf0c2
+Depends: libc6 (>= 2.7-1), libgcc1 (>= 1:4.1.1-21), libstdc++6 (>= 4.1.1-21)
+Description: GNU Internationalization utilities for the base system
+ This package includes the gettext and ngettext programs which allow
+ other packages to internationalize the messages given by shell scripts.
+Original-Maintainer: Santiago Vila <sanvila@xxxxxxxxxx>
+
+Package: libflac8
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 392
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: flac
+Version: 1.2.1-1ubuntu2
+Replaces: libflac4 (= 1.1.1-1)
+Depends: libc6 (>= 2.7-1), libogg0 (>= 1.1.3)
+Conflicts: libflac4 (= 1.1.1-1)
+Description: Free Lossless Audio Codec - runtime C library
+ FLAC stands for Free Lossless Audio Codec. Grossly oversimplified, FLAC is
+ similar to MP3, but lossless.  The FLAC project consists of:
+ .
+  * The stream format
+  * libFLAC, which implements a reference encoder, stream decoder, and file
+    decoder
+  * flac, which is a command-line wrapper around libFLAC to encode and decode
+    .flac files
+  * Input plugins for various music players (Winamp, XMMS, and more in the
+    works)
+ .
+ This package contains the runtime library libFLAC.
+Original-Maintainer: Joshua Kwan <joshk@xxxxxxxxxxxxxxx>
+
+Package: module-init-tools
+Status: install ok installed
+Priority: important
+Section: admin
+Installed-Size: 324
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 3.3-pre11-4ubuntu5
+Replaces: hotplug (>= 0.0.20040329)
+Depends: libc6 (>= 2.7-1), lsb-base (>= 3.0-6)
+Conflicts: modutils
+Conffiles:
+ /etc/modprobe.d/arch/i386 1f68153d4f9feab7fe197b0949573a54
+ /etc/modprobe.d/aliases 94526ce688edeb9cbae132f9452089b2
+ /etc/modprobe.d/blacklist 8cf73903f33cad737bebf543713d488b
+ /etc/modprobe.d/blacklist-framebuffer f41dd286c7db7149256d5bbdb4f7647f
+ /etc/modprobe.d/blacklist-watchdog 171bb9ccb2eaae983d0793ec99644d07
+ /etc/modprobe.d/isapnp 5be3edbb3cd6290636ac3e6d653e5076
+ /etc/modprobe.d/options 4ecda6773c5c77efc392e54b32537ff1
+ /etc/depmod.d/ubuntu.conf 7c8439ef36b12e5f226b5dbfa20b8c2d
+ /etc/init.d/module-init-tools 07ebe33a0d76ae96bc4c64b939082821
+Description: tools for managing Linux kernel modules
+ This package contains a set of programs for loading, inserting, and
+ removing kernel modules for Linux (versions 2.5.48 and above). It serves
+ the same function that the "modutils" package serves for Linux 2.4.
+Original-Maintainer: Marco d'Itri <md@xxxxxxxx>
+
+Package: libffi4
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 56
+Maintainer: Ubuntu Core developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: gcc-4.2
+Version: 4.2.3-2ubuntu7
+Depends: gcc-4.2-base (= 4.2.3-2ubuntu7), libc6 (>= 2.7-1)
+Description: Foreign Function Interface library runtime
+ A foreign function interface is the popular name for the interface that
+ allows code written in one language to call code written in another
+ language.
+Original-Maintainer: Debian GCC Maintainers <debian-gcc@xxxxxxxxxxxxxxxx>
+
+Package: man-db
+Status: install ok installed
+Priority: important
+Section: doc
+Installed-Size: 2492
+Maintainer: Colin Watson <cjwatson@xxxxxxxxxx>
+Architecture: i386
+Version: 2.5.1-3
+Replaces: man, manpages-de (<< 0.5-4), nlsutils
+Provides: man, man-browser
+Depends: bsdmainutils, debconf (>= 1.2.0) | debconf-2.0, dpkg (>= 1.9.0), groff-base (>= 1.17.2-2), libc6 (>= 2.7-1), libgdbm3, zlib1g (>= 1:1.2.3.3.dfsg-1)
+Suggests: groff, less, www-browser
+Conflicts: man, suidmanager (<< 0.50)
+Conffiles:
+ /etc/manpath.config 481210d152fac60363edbf58e091bef3
+ /etc/cron.daily/man-db f0ee460b382f31d76813da3c68d5b7e5
+ /etc/cron.weekly/man-db abb6867338adafff84d4474adf36bbc1
+Description: on-line manual pager
+ This package provides the man command, the primary way of examining the
+ on-line help files (manual pages). Other utilities provided include the
+ whatis and apropos commands for searching the manual page database, the
+ manpath utility for determining the manual page search path, and the
+ maintenance utilities mandb, catman and zsoelim. man-db uses the groff
+ suite of programs to format and display the manual pages.
+
+Package: localechooser-data
+Status: install ok installed
+Priority: optional
+Section: devel
+Installed-Size: 84
+Maintainer: Ubuntu Installer Team <ubuntu-installer@xxxxxxxxxxxxxxxx>
+Architecture: all
+Source: localechooser
+Version: 1.42ubuntu5
+Depends: iso-codes
+Description: Lists of locales supported by the installer
+ This package contains lists of languages, countries, and locales supported
+ by the installer, for use by programs that create automatic installation
+ scripts.
+Original-Maintainer: Debian Install System Team <debian-boot@xxxxxxxxxxxxxxxx>
+
+Package: libcairo2
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 788
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: cairo
+Version: 1.6.0-0ubuntu2
+Replaces: libcairo0.5.1, libcairo0.6.0, libcairo0.9.0, libcairo1
+Provides: libcairo
+Depends: libc6 (>= 2.4), libfontconfig1 (>= 2.4.0), libfreetype6 (>= 2.3.5), libgcc1 (>= 1:4.1.1-21), libpixman-1-0 (>= 0.10.0), libpng12-0 (>= 1.2.13-4), libstdc++6, libx11-6, libxrender1, zlib1g (>= 1:1.2.3.3.dfsg-1)
+Conflicts: libcairo1
+Description: The Cairo 2D vector graphics library
+ Cairo is a multi-platform library providing anti-aliased
+ vector-based rendering for multiple target backends. Paths consist
+ of line segments and cubic splines and can be rendered at any width
+ with various join and cap styles. All colors may be specified with
+ optional translucence (opacity/alpha) and combined using the
+ extended Porter/Duff compositing algebra as found in the X Render
+ Extension.
+ .
+ Cairo exports a stateful rendering API similar in spirit to the path
+ construction, text, and painting operators of PostScript, (with the
+ significant addition of translucence in the imaging model). When
+ complete, the API is intended to support the complete imaging model of
+ PDF 1.4.
+ .
+ This package contains the shared libraries.
+Homepage: http://cairographics.org/
+Original-Maintainer: Dave Beckett <dajobe@xxxxxxxxxx>
+
+Package: libesd-alsa0
+Status: install ok installed
+Priority: extra
+Section: libs
+Installed-Size: 92
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: esound
+Version: 0.2.38-0ubuntu9
+Provides: libesd0
+Depends: esound-common (>= 0.2.38-0ubuntu9), libasound2 (>> 1.0.14), libaudiofile0 (>= 0.2.3-4), libc6 (>= 2.7-1)
+Recommends: esound-clients
+Suggests: esound
+Conflicts: esound-clients (<< 0.2.36-1), libesd0
+Description: Enlightened Sound Daemon (ALSA) - Shared libraries
+ This program is designed to mix together several digitized
+ audio streams for playback by a single device.
+ .
+ This package is for use with ALSA sound drivers.
+Original-Maintainer: Ryan Murray <rmurray@xxxxxxxxxx>
+
+Package: libgdbm3
+Status: install ok installed
+Priority: standard
+Section: base
+Installed-Size: 80
+Maintainer: James Troup <james@xxxxxxxxxx>
+Architecture: i386
+Source: gdbm
+Version: 1.8.3-3
+Depends: libc6 (>= 2.4-1)
+Description: GNU dbm database routines (runtime version)
+ GNU dbm ('gdbm') is a library of database functions that use extendible
+ hashing and works similarly to the standard UNIX 'dbm' functions.
+ .
+ The basic use of 'gdbm' is to store key/data pairs in a data file, thus
+ providing a persistent version of the 'dictionary' Abstract Data Type
+ ('hash' to perl programmers).
+
+Package: libexif12
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 788
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: libexif
+Version: 0.6.16-2.1
+Depends: libc6 (>= 2.7-1)
+Description: library to parse EXIF files
+ Most digital cameras produce EXIF files, which are JPEG files with
+ extra tags that contain information about the image. The EXIF library
+ allows you to parse an EXIF file and read the data from those tags.
+Original-Maintainer: Frederic Peters <fpeters@xxxxxxxxxx>
+
+Package: xserver-xorg-video-v4l
+Status: install ok installed
+Priority: optional
+Section: x11
+Installed-Size: 132
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 1:0.1.1-6ubuntu1
+Replaces: xserver-xorg (<< 6.8.2-35), xserver-xorg-driver-v4l
+Provides: xserver-xorg-video-2
+Depends: libc6 (>= 2.6.1-1), xserver-xorg-core (>= 2:1.4)
+Conflicts: xserver-xorg-driver-v4l
+Description: X.Org X server -- Video 4 Linux display driver
+ This driver for the X.Org X server (see xserver-xorg for a further description)
+ uses the video 4 linux interface. It does not provide a graphics chip
+ driver, but instead registers a number of generic Xv adaptors which can be
+ used with any graphics chipset driver.
+ .
+ More information about X.Org can be found at:
+ <URL:http://www.X.org>
+ <URL:http://xorg.freedesktop.org>
+ <URL:http://lists.freedesktop.org/mailman/listinfo/xorg>
+ .
+ This package is built from the X.org xf86-video-v4l driver module.
+Original-Maintainer: Debian X Strike Force <debian-x@xxxxxxxxxxxxxxxx>
+
+Package: libgcrypt11
+Status: install ok installed
+Priority: important
+Section: libs
+Installed-Size: 384
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 1.2.4-2ubuntu7
+Depends: libc6 (>= 2.6.1-1), libgpg-error0 (>= 1.4)
+Suggests: rng-tools
+Description: LGPL Crypto library - runtime library
+ libgcrypt contains cryptographic functions.  Many important free
+ ciphers, hash algorithms and public key signing algorithms have been
+ implemented:
+ arcfour, blowfish, cast5, DSA, des, 3DES, elgamal, MD5, rijndael,
+ RMD160, RSA, SHA1, twofish, tiger.
+Original-Maintainer: Debian GnuTLS Maintainers <pkg-gnutls-maint@xxxxxxxxxxxxxxxxxxxxxxx>
+
+Package: xcursor-themes
+Status: install ok installed
+Priority: optional
+Section: x11
+Installed-Size: 3848
+Maintainer: Ubuntu Core Developers <ubuntu-devel@xxxxxxxxxxxxxxxx>
+Architecture: all
+Version: 1.0.1-5ubuntu1
+Replaces: xlibs-data (<< 6.8.2-35)
+Conflicts: xlibs-data (<< 6.8.2-35)
+Conffiles:
+ /etc/X11/cursors/core.theme 73cec8bd811379ca1a61cb240e96fb51
+ /etc/X11/cursors/handhelds.theme d8be9d15f982704d007d3ba3d8009f54
+ /etc/X11/cursors/redglass.theme d1e8adaca475bf4a4b295ca5407244fd
+ /etc/X11/cursors/whiteglass.theme f24b4a1b5e7754dbb60a831af8bc591a
+Description: Base X cursor themes
+ This package contains the base X cursor themes -- handhelds, redglass, and
+ whiteglass.  These themes used to be contained in the xlibs-data package.  They
+ are for use with the Xcursor library.
+ .
+ Please see libxcursor1 for more information.
+Original-Maintainer: Debian X Strike Force <debian-x@xxxxxxxxxxxxxxxx>
+
+Package: python-dbus
+Status: install ok installed
+Priority: optional
+Section: python
+Installed-Size: 644
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: dbus-python
+Version: 0.82.4-1ubuntu1
+Replaces: python2.4-dbus
+Provides: python2.4-dbus, python2.5-dbus
+Depends: libc6 (>= 2.7-1), libdbus-1-3 (>= 1.1.1), libdbus-glib-1-2 (>= 0.74), libglib2.0-0 (>= 2.15.6), python (>= 2.4), python (<< 2.6), python-support (>= 0.7.1)
+Recommends: python-gobject | python-gtk (<< 2.10)
+Suggests: python-dbus-dbg, python-dbus-doc
+Conflicts: gajim (<< 0.11.1), gnome-osd (<< 0.12.0), python2.4-dbus
+Description: simple interprocess messaging system (Python interface)
+ D-Bus is a message bus, used for sending messages between applications.
+ Conceptually, it fits somewhere in between raw sockets and CORBA in
+ terms of complexity.
+ .
+ This package provides a Python interface to D-Bus.
+ .
+ See the dbus description for more information about D-Bus in general.
+Original-Maintainer: Utopia Maintenance Team <pkg-utopia-maintainers@xxxxxxxxxxxxxxxxxxxxxxx>
+Python-Version: 2.4, 2.5
+
+Package: xserver-xorg-video-sis
+Status: install ok installed
+Priority: optional
+Section: x11
+Installed-Size: 676
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 1:0.9.3-6
+Replaces: xserver-xorg (<< 6.8.2-35), xserver-xorg-driver-sis
+Provides: xserver-xorg-video-2
+Depends: libc6 (>= 2.6.1-1), xserver-xorg-core (>= 2:1.4)
+Conflicts: xserver-xorg-driver-sis
+Description: X.Org X server -- SiS display driver
+ This package provides the driver for all SiS and XGI Volari cards.
+ .
+ More information about X.Org can be found at:
+ <URL:http://www.X.org>
+ <URL:http://xorg.freedesktop.org>
+ <URL:http://lists.freedesktop.org/mailman/listinfo/xorg>
+ .
+ This package is built from the X.org xf86-video-sis driver module.
+Original-Maintainer: Debian X Strike Force <debian-x@xxxxxxxxxxxxxxxx>
+
+Package: libxinerama1
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 60
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: libxinerama
+Version: 2:1.0.2-1build1
+Depends: libc6 (>= 2.6), libx11-6, libxext6, x11-common
+Description: X11 Xinerama extension library
+ libXinerama provides an X Window System client interface to the XINERAMA
+ extension to the X protocol.
+ .
+ The Xinerama (also known as panoramiX) extension allows for multiple screens
+ attached to a single display to be treated as belonging together, and to give
+ desktop applications a better idea of the monitor layout.
+ .
+ More information about X.Org can be found at:
+ <URL:http://xorg.freedesktop.org>
+ <URL:http://lists.freedesktop.org/mailman/listinfo/xorg>
+Original-Maintainer: Debian X Strike Force <debian-x@xxxxxxxxxxxxxxxx>
+
+Package: lzma
+Status: install ok installed
+Priority: required
+Section: base
+Installed-Size: 296
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 4.43-12ubuntu1
+Depends: libc6 (>= 2.7-1), libgcc1 (>= 1:4.1.1-21), libstdc++6 (>= 4.2.1-4)
+Description: Compression method of 7z format in 7-Zip program
+ LZMA is a compression algorithm, based on the famous Lempel Ziv
+ compression method.
+ .
+ The main characteristics of the algorithm are very good compression,
+ fast decompression, use of lot of RAM for compression and low usage of
+ RAM for decompression.
+ .
+ LZMA provides high compression ratio and very fast decompression, so it
+ is very suitable for embedded applications. For example, it can be used
+ for ROM (firmware) compression.
+Homepage: http://www.7-zip.org/sdk.htm
+Original-Maintainer: Mohammed Adnène Trojette <adn+deb@xxxxxxxx>
+
+Package: libuuid1
+Status: install ok installed
+Priority: required
+Section: libs
+Installed-Size: 92
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: e2fsprogs
+Version: 1.40.8-2ubuntu2
+Replaces: e2fsprogs (<< 1.34-1)
+Depends: libc6 (>= 2.7-1), passwd
+Recommends: uuid-runtime
+Description: universally unique id library
+ libuuid generates and parses 128-bit universally unique id's (UUID's).
+ See RFC 4122 for more information.
+Original-Maintainer: Theodore Y. Ts'o <tytso@xxxxxxx>
+
+Package: ubiquity-ubuntu-artwork
+Status: install ok installed
+Priority: optional
+Section: admin
+Installed-Size: 124
+Maintainer: Ubuntu Installer Team <ubuntu-installer@xxxxxxxxxxxxxxxx>
+Architecture: all
+Source: ubiquity
+Version: 1.8.12
+Replaces: espresso-ubuntu-artwork, espresso-ubuntu-doc, ubiquity-ubuntu-doc, ubuntu-express-ubuntu-artwork, ubuntu-express-ubuntu-doc
+Provides: ubiquity-artwork-1.8.12
+Conflicts: espresso-ubuntu-artwork, espresso-ubuntu-doc, ubiquity-ubuntu-doc, ubuntu-express-ubuntu-artwork, ubuntu-express-ubuntu-doc
+Description: Ubuntu artwork for Ubiquity live installer
+ This package provides Ubuntu-themed user interface artwork, help files, and
+ user interface text for the Ubiquity live CD installer.
+
+Package: libtasn1-3
+Status: install ok installed
+Priority: important
+Section: libs
+Installed-Size: 156
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 1.1-1
+Depends: libc6 (>= 2.6.1-1)
+Conflicts: libtasn1-2 (= 0.3.1-1)
+Description: Manage ASN.1 structures (runtime)
+ Manage ASN1 (Abstract Syntax Notation One) structures.
+ The main features of this library are:
+   * on-line ASN1 structure management that doesn't require any C code
+     file generation.
+   * off-line ASN1 structure management with C code file generation
+     containing an array.
+   * DER (Distinguish Encoding Rules) encoding
+   * no limits for INTEGER and ENUMERATED values
+ .
+ This package contains runtime libraries.
+Original-Maintainer: Debian GnuTLS Maintainers <pkg-gnutls-maint@xxxxxxxxxxxxxxxxxxxxxxx>
+
+Package: lsb-base
+Status: install ok installed
+Priority: required
+Section: misc
+Installed-Size: 84
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: all
+Source: lsb
+Version: 3.2-4ubuntu1
+Replaces: lsb (<< 2.0-6), lsb-core (<< 2.0-6)
+Depends: libncurses5, libpam0g, ncurses-bin, sed
+Conflicts: lsb (<< 2.0-6), lsb-core (<< 2.0-6)
+Conffiles:
+ /etc/lsb-base-logging.sh a58f2665f3777b92d14d9952dc185d8f
+Description: Linux Standard Base 3.2 init script functionality
+ The Linux Standard Base (http://www.linuxbase.org/) is a standard
+ core system that third-party applications written for Linux can
+ depend upon.
+ .
+ This package only includes the init-functions shell library, which
+ may be used by other packages' initialization scripts for console
+ logging and other purposes.
+Homepage: http://www.linux-foundation.org/en/LSB
+Original-Maintainer: Chris Lawrence <lawrencc@xxxxxxxxxx>
+
+Package: libcurl3-gnutls
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 396
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: curl
+Version: 7.18.0-1ubuntu2
+Replaces: libcurl4-gnutls
+Depends: libc6 (>= 2.7-1), libcomerr2 (>= 1.33-3), libgnutls13 (>= 2.0.4-0), libidn11 (>= 0.5.18), libkrb53 (>= 1.6.dfsg.2), libldap-2.4-2 (>= 2.4.7), zlib1g (>= 1:1.2.3.3.dfsg-1)
+Recommends: ca-certificates
+Conflicts: libcurl4-gnutls
+Description: Multi-protocol file transfer library (GnuTLS)
+ libcurl is designed to be a solid, usable, reliable and portable
+ multi-protocol file transfer library.
+ .
+ SSL support is provided by GnuTLS.
+ .
+ This is the shared version of libcurl.
+Homepage: http://curl.haxx.se
+Original-Maintainer: Domenico Andreoli <cavok@xxxxxxxxxx>
+
+Package: fontconfig
+Status: install ok installed
+Priority: optional
+Section: utils
+Installed-Size: 132
+Maintainer: Ubuntu Core developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 2.5.0-2ubuntu3
+Depends: defoma (>= 0.7.0), fontconfig-config, libc6 (>= 2.7-1), libexpat1 (>= 1.95.8), libfontconfig1 (>= 2.4.0), libfreetype6 (>= 2.3.5), zlib1g (>= 1:1.2.3.3.dfsg-1)
+Description: generic font configuration library - support binaries
+ Fontconfig is a font configuration and customization library, which
+ does not depend on the X Window System. It is designed to locate
+ fonts within the system and select them according to requirements
+ specified by applications.
+ .
+ Fontconfig is not a rasterization library, nor does it impose a
+ particular rasterization library on the application. The X-specific
+ library 'Xft' uses fontconfig along with freetype to specify and
+ rasterize fonts.
+ .
+ This package contains a program to maintain the fontconfig cache
+ (fc-cache), a sample program to list installed fonts (fc-list), a program
+ to test the matching rules (fc-match) and a program to dump the binary
+ cache files in string form (fc-cat). It also makes fonts managed by defoma
+ available to fontconfig applications.
+Original-Maintainer: Keith Packard <keithp@xxxxxxxxxx>
+
+Package: libjpeg62
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 196
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: libjpeg6b
+Version: 6b-14
+Depends: libc6 (>= 2.6-1)
+Description: The Independent JPEG Group's JPEG runtime library
+ The Independent JPEG Group's JPEG library is a library for handling
+ JPEG files.
+ .
+ This package contains the shared library.
+Original-Maintainer: Bill Allombert <ballombe@xxxxxxxxxx>
+
+Package: cpp-4.2
+Status: install ok installed
+Priority: optional
+Section: interpreters
+Installed-Size: 5600
+Maintainer: Ubuntu Core developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: gcc-4.2
+Version: 4.2.3-2ubuntu7
+Depends: gcc-4.2-base (= 4.2.3-2ubuntu7), libc6 (>= 2.7-1)
+Suggests: gcc-4.2-locales (>= 4.2.3-1)
+Conflicts: cpp-4.2 (<< 4.2-20070307), g++-4.2 (<< 4.2-20070307), g++-4.2-multilib (<< 4.2-20070307), gcc-4.2 (<< 4.2-20070307), gcc-4.2-multilib (<< 4.2-20070307), gcj-4.2 (<< 4.2-20070307), gfortran-4.2 (<< 4.2-20070307), gfortran-4.2-multilib (<< 4.2-20070307), gobjc++-4.2 (<< 4.2-20070307), gobjc++-4.2-multilib (<< 4.2-20070307), gobjc-4.2 (<< 4.2-20070307), gobjc-4.2-multilib (<< 4.2-20070307), treelang-4.2 (<< 4.2-20070307)
+Description: The GNU C preprocessor
+ A macro processor that is used automatically by the GNU C compiler
+ to transform programs before actual compilation.
+ .
+ This package has been separated from gcc for the benefit of those who
+ require the preprocessor but not the compiler.
+Original-Maintainer: Debian GCC Maintainers <debian-gcc@xxxxxxxxxxxxxxxx>
+
+Package: user-setup
+Status: install ok installed
+Priority: extra
+Section: admin
+Installed-Size: 384
+Maintainer: Ubuntu Installer Team <ubuntu-installer@xxxxxxxxxxxxxxxx>
+Architecture: all
+Version: 1.16ubuntu5
+Depends: adduser, debconf (>= 0.5) | debconf-2.0, passwd
+Description: Set up initial user and password
+ This package creates an initial user, using the same code as is
+ responsible for creating the initial user in the installer. It is only
+ likely to be of any use if your system has no non-system users at all.
+Original-Maintainer: Debian Install System Team <debian-boot@xxxxxxxxxxxxxxxx>
+
+Package: procps
+Status: install ok installed
+Priority: required
+Section: admin
+Installed-Size: 600
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 1:3.2.7-5ubuntu2
+Replaces: bsdutils (<< 2.9x-1), watch
+Provides: watch
+Depends: libc6 (>= 2.7-1), libncurses5 (>= 5.6+20071006-3), lsb-base (>= 3.0-10)
+Recommends: psmisc
+Conflicts: libproc-dev (<< 1:1.2.6-2), pgrep (<< 3.3-5), procps-nonfree, w-bassman (<< 1.0-3), watch
+Conffiles:
+ /etc/sysctl.conf 3628007f7a72844bdbe19bde756b5064
+ /etc/init.d/procps 22b9c954c086f982553f2bf349f34b81
+Description: /proc file system utilities
+ These are utilities to browse the /proc filesystem, which is not a real file
+ system but a way for the kernel to provide information about the status of
+ entries in its process table. (e.g. running, stopped or "zombie")
+ Both command line and full screen utilities are provided. Ncurses is needed
+ for the full screen utilities.  More information can be found at procps
+ website http://procps.sf.net/
+ .
+ This package includes the following utilities: top, uptime, tload,
+ free, vmstat, watch, skill, pmap, pgrep, slabtop and pwdx.
+Original-Maintainer: Craig Small <csmall@xxxxxxxxxx>
+
+Package: wpasupplicant
+Status: install ok installed
+Priority: optional
+Section: net
+Installed-Size: 628
+Maintainer: Reinhard Tartler <siretart@xxxxxxxxxx>
+Architecture: i386
+Version: 0.6.0+0.5.8-0ubuntu2
+Depends: libc6 (>= 2.7-1), libdbus-1-3 (>= 1.1.1), libncurses5 (>= 5.6+20071006-3), libreadline5 (>= 5.2), libssl0.9.8 (>= 0.9.8f-1), lsb-base (>= 3.0-6)
+Recommends: dhcp3-client
+Suggests: guessnet, iproute, libengine-pkcs11-openssl
+Conffiles:
+ /etc/wpa_supplicant/ifupdown.sh 4c1df8b9f2d64a8e3dcd1fc08d1e8db2
+ /etc/wpa_supplicant/functions.sh 1d65fb9ccf039a360cb298118ad21dfe
+ /etc/init.d/wpa-ifupdown 0dbdc73ac6a0e53ec429466a69e4cf95
+ /etc/logrotate.d/wpa_action 2f64dd63ec9ccebb07b746910f6aeb04
+Description: Client support for WPA and WPA2 (IEEE 802.11i)
+ WPA and WPA2 are methods for securing wireless networks, the former
+ using IEEE 802.1X, and the latter using IEEE 802.11i. This software
+ provides key negotiation with the WPA Authenticator, and controls
+ association with IEEE 802.11i networks.
+
+Package: language-pack-en
+Status: install ok installed
+Priority: optional
+Section: translations
+Installed-Size: 36
+Maintainer: Language pack maintainers <language-packs@xxxxxxxxxx>
+Architecture: all
+Version: 1:8.04+20080527
+Replaces: language-pack-en (<< 1:8.04+20080527), language-pack-en-base, language-pack-gnome-en (<< 1:8.04+20080527), language-pack-gnome-en-base (<< 1:8.04+20080527), language-pack-kde-en (<< 1:8.04+20080527), language-pack-kde-en-base (<< 1:8.04+20080527)
+Depends: language-pack-en-base
+Pre-Depends: dpkg (>= 1.10.27ubuntu1)
+Description: translation updates for language English
+ Translation data updates for all supported packages for:
+ English
+ .
+ language-pack-en-base provides the bulk of translation data
+ and is updated only seldom. This package provides frequent translation
+ updates.
+ .
+ Please note that you should install language-support-en
+ to get full support for this language.
+
+Package: language-pack-es
+Status: install ok installed
+Priority: optional
+Section: translations
+Installed-Size: 36
+Maintainer: Language pack maintainers <language-packs@xxxxxxxxxx>
+Architecture: all
+Version: 1:8.04+20080527.2
+Replaces: language-pack-es (<< 1:8.04+20080527.2), language-pack-es-base, language-pack-gnome-es (<< 1:8.04+20080527.2), language-pack-gnome-es-base (<< 1:8.04+20080527.2), language-pack-kde-es (<< 1:8.04+20080527.2), language-pack-kde-es-base (<< 1:8.04+20080527.2)
+Depends: language-pack-es-base
+Pre-Depends: dpkg (>= 1.10.27ubuntu1)
+Description: translation updates for language Spanish; Castilian
+ Translation data updates for all supported packages for:
+ Spanish; Castilian
+ .
+ language-pack-es-base provides the bulk of translation data
+ and is updated only seldom. This package provides frequent translation
+ updates.
+ .
+ Please note that you should install language-support-es
+ to get full support for this language.
+
+Package: dnsutils
+Status: install ok installed
+Priority: standard
+Section: net
+Installed-Size: 284
+Maintainer: LaMont Jones <lamont@xxxxxxxxxx>
+Architecture: i386
+Source: bind9
+Version: 1:9.4.2-10
+Replaces: bind, bind9 (<< 1:9.1.0-3)
+Depends: bind9-host | host, libbind9-30, libc6 (>= 2.4), libdns32, libisc32, libisccfg30, liblwres30, libssl0.9.8 (>= 0.9.8f-1)
+Suggests: rblcheck
+Conflicts: netstd (<< 2.00)
+Description: Clients provided with BIND
+ The Berkeley Internet Name Domain (BIND) implements an Internet domain
+ name server.  BIND is the most widely-used name server software on the
+ Internet, and is supported by the Internet Software Consortium, www.isc.org.
+ .
+ This package delivers various client programs related to DNS that are
+ derived from the BIND source tree.
+ .
+ - dig	- query the DNS in various ways
+ - nslookup - the older way to do it
+ - nsupdate - perform dynamic updates (See RFC2136)
+
+Package: ttf-kochi-mincho
+Status: install ok installed
+Priority: optional
+Section: x11
+Installed-Size: 8996
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: all
+Source: ttf-kochi
+Version: 1.0.20030809-4ubuntu2
+Provides: ttf-kochi-mincho-naga10
+Depends: defoma
+Pre-Depends: dpkg (>= 1.10.24)
+Suggests: ttf-kochi-gothic | ttf-kochi-gothic-naga10, x-ttcidfont-conf, xserver-xorg | xfs-xtt (>> 1:1.3.0.1-3) | xfs (>= 4.0.2-1)
+Conflicts: ttf-kochi-mincho-naga10
+Conffiles:
+ /etc/defoma/hints/ttf-kochi-mincho.hints 9e5e304712c2309d975932fe51ee3b8c
+Description: Kochi Subst Mincho Japanese TrueType font without naga10
+ ttf-kochi-mincho is high quality, Japanese mincho TrueType font.
+ It does not include naga10 font, so it's DFSG-free.
+ .
+ The family of ttf-kochi-* is very smooth and beautiful compared with
+ current free Japanese TrueType fonts. It has bitmap hinting information,
+ so it's beautiful and not jagged to display on the CRT.
+ This font is suitable for both printing and displaying Japanese
+ characters.
+Original-Maintainer: GOTO Masanori <gotom@xxxxxxxxxx>
+
+Package: xutils-dev
+Status: install ok installed
+Priority: optional
+Section: x11
+Installed-Size: 1652
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 1:7.2.ds2-1ubuntu1
+Replaces: imake (<= 1:1.0.1-1), makedepend (<= 1:1.0.0-1), xorg-build-macros (<= 1.0.1-1), xmkmf (<= 0.99.0-6)
+Provides: imake, makedepend, xorg-build-macros, xmkmf
+Depends: libc6 (>= 2.5-5), cpp
+Pre-Depends: x11-common (>= 1:7.0.0)
+Conflicts: imake (<= 1:1.0.1-1), makedepend (<= 1:1.0.0-1), xorg-build-macros (<= 1.0.1-1), xmkmf (<= 0.99.0-6)
+Description: X Window System utility programs for development
+ xutils-dev provides a set of utility programs shipped with the X Window System
+ that do not require the X libraries; many of these programs are useful
+ even on a system that does not have any X clients or X servers installed.
+ .
+ The programs in this package include:
+  - ccmakedep, a version of makedepend which "does it right"
+  - imake, a C preprocessor interface to the make utility;
+  - lndir, a tool that creates a shadow directory of symbolic links to
+    another directory tree;
+  - makedepend, a tool to create dependencies in makefiles;
+  - makeg, a tool for making debuggable executables;
+Original-Maintainer: Debian X Strike Force <debian-x@xxxxxxxxxxxxxxxx>
+
+Package: libwvstreams4.4-base
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 640
+Maintainer: Ubuntu Core developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: wvstreams
+Version: 4.4.1-0ubuntu2
+Depends: libc6 (>= 2.7-1), libxplc0.3.13
+Description: C++ network libraries for rapid application development
+ WvStreams is a library suite that is comprised of several parts.  Included
+ in the base package are:
+  * WvString: a convenient and efficient C++ string class
+  * WvList: an easy-to-use linked list
+  * WvHashTable: an efficient and easy-to-use hash table
+  * WvFile: a WvStream wrapper for handling files
+  * WvStreamClone: a base class which makes writing your own WvStreams easy
+  * WvLog: a log files handler
+  * UniIniGen: a tiny version of UniConf for simple configuration systems
+Original-Maintainer: Simon Law <sfllaw@xxxxxxxxxx>
+
+Package: libspeex1
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 180
+Maintainer: Ubuntu MOTU Developers <ubuntu-motu@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: speex
+Version: 1.1.12-3ubuntu0.8.04.1
+Replaces: libspeex
+Depends: libc6 (>= 2.4)
+Suggests: speex
+Conflicts: libspeex
+Description: The Speex Speech Codec
+ Unlike other codecs like MP3 and Ogg Vorbis, Speex is specially
+ designed for compressing voice at low bit-rates for applications
+ such as voice over IP (VoIP). In some sense, it is meant to be
+ complementary to the Ogg Vorbis codec.
+ .
+ This package is only the library.
+Original-Maintainer: Debian VoIP Team <pkg-voip-maintainers@xxxxxxxxxxxxxxxxxxxxxxx>
+
+Package: mscompress
+Status: install ok installed
+Priority: extra
+Section: otherosfs
+Installed-Size: 72
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 0.3-2ubuntu1
+Depends: libc6 (>= 2.5-0ubuntu1)
+Conflicts: foo2zjs (<< 20061224-0ubuntu3)
+Description: Microsoft "compress.exe/expand.exe" compatible (de)compressor
+ This package contains two programs:
+ .
+ msexpand, which decompresses files compressed by the Microsoft compress.exe
+ utility (e.g. Win 3.x installation files)
+ .
+ mscompress, which compresses files using the LZ77 compression algorithm.
+ Files can be decompressed using Microsoft expand.exe or msexpand(1).
+Original-Maintainer: Jefferson E. Noxon <jeff@xxxxxxxxxx>
+
+Package: python-minimal
+Essential: yes
+Status: install ok installed
+Priority: required
+Section: python
+Installed-Size: 84
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: all
+Source: python-defaults
+Version: 2.5.2-0ubuntu1
+Replaces: python (<= 2.4-1)
+Depends: dpkg (>= 1.13.20), python2.5-minimal (>= 2.5.2)
+Conflicts: python (<= 2.4-1), python-central (<< 0.5.5)
+Description: A minimal subset of the Python language (default version)
+ This package contains the interpreter and some essential modules.  It's used
+ in the boot process for some basic tasks.
+ See /usr/share/doc/python-minimal/README.Debian for a list of the modules
+ contained in this package.
+Original-Maintainer: Matthias Klose <doko@xxxxxxxxxx>
+
+Package: console-tools
+Status: install ok installed
+Priority: optional
+Section: utils
+Installed-Size: 912
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 1:0.2.3dbs-65ubuntu7
+Replaces: open, util-linux (<< 2.11)
+Provides: console-utilities, open
+Depends: debconf | debconf-2.0, libc6 (>= 2.7-1), libconsole (= 1:0.2.3dbs-65ubuntu7), lsb-base (>= 3.0-10)
+Recommends: console-setup | console-data (>= 2002.12.04dbs-1), console-setup | console-common
+Suggests: kbd-compat
+Conflicts: console-common (<< 0.7.25), console-utilities, kbd (<< 0.95-11), open
+Conffiles:
+ /etc/console-tools/remap 2f1f15d62b45ab43c04b3ddbfcf591ec
+ /etc/init.d/console-screen.sh 40dfedb0d043e7e7a420d405b1f95fb4
+Description: Linux console and font utilities
+ This package allows you to set-up and manipulate the Linux console (ie.
+ screen and keyboard), and manipulate console-font files.
+ .
+ `console-tools' was developed from version 0.94 of the standard `kbd'
+ package, and integrates many fixes and enhancements, including new
+ kbd features up to 0.99.
+ .
+ You will probably want to install a set of data files, such as the one
+ in the `console-data' package.
+ .
+ For command-line compatibility with kbd, you may want to install the
+ kbd-compat package.
+Original-Maintainer: Alastair McKinstry <mckinstry@xxxxxxxxxx>
+
+Package: libfuse2
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 264
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: fuse
+Version: 2.7.2-1ubuntu2
+Depends: libc6 (>= 2.7-1)
+Suggests: fuse-utils
+Conflicts: fuse-utils (<< 2.7.2-1ubuntu2)
+Description: Filesystem in USErspace library
+ Simple interface for userspace programs to export a virtual
+ filesystem to the Linux kernel.
+ .
+ This package contains the files necessary to write applications in C
+ or C++ using fuse.
+Homepage: http://fuse.sourceforge.net/
+Original-Maintainer: Bartosz Fenski <fenio@xxxxxxxxxx>
+
+Package: ncurses-base
+Essential: yes
+Status: install ok installed
+Priority: required
+Section: utils
+Installed-Size: 300
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: all
+Source: ncurses
+Version: 5.6+20071124-1ubuntu2
+Replaces: ncurses-term
+Provides: ncurses-runtime
+Depends: libncurses5 (>= 5.4-5)
+Conflicts: ncurses, ncurses-runtime
+Conffiles:
+ /etc/terminfo/README 9d086188afcd9479ae96ff55dd6c1573
+Description: Descriptions of common terminal types
+ This package contains what should be a reasonable subset of terminal
+ definitions, including: ansi, dumb, linux, rxvt, screen, sun, vt100,
+ vt102, vt220, vt52, and xterm.
+Original-Maintainer: Daniel Baumann <daniel@xxxxxxxxxx>
+
+Package: ubiquity-casper
+Status: install ok installed
+Priority: optional
+Section: misc
+Installed-Size: 100
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: all
+Source: casper
+Version: 1.132ubuntu0.2
+Replaces: espresso-casper
+Depends: laptop-detect, sudo
+Conflicts: espresso-casper
+Enhances: ubiquity
+Description: Configuration hooks for live installer
+ This package provides hook scripts for the Ubiquity live installer that
+ repeat some pieces of configuration done by the live system boot process in
+ the system installed by Ubiquity.
+Tag: admin::boot, admin::filesystem, implemented-in::shell, protocol::smb, role::plugin, scope::utility, special::completely-tagged, works-with-format::iso9660
+
+Package: libpopt0
+Status: install ok installed
+Priority: important
+Section: base
+Installed-Size: 448
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: popt
+Version: 1.10-3build1
+Replaces: popt
+Depends: libc6 (>= 2.5-0ubuntu1)
+Conflicts: popt, libpopt-dev (<= 1.4-1), rpm (<= 4.0.2-3)
+Description: lib for parsing cmdline parameters
+ Popt was heavily influenced by the getopt() and getopt_long() functions,
+ but it allows more powerful argument expansion. It can parse arbitrary
+ argv[] style arrays and automatically set variables based on command
+ line arguments. It also allows command line arguments to be aliased via
+ configuration files and includes utility functions for parsing arbitrary
+ strings into argv[] arrays using shell-like rules.
+ .
+ This package contains the runtime library and locale data.
+Original-Maintainer: Paul Martin <pm@xxxxxxxxxx>
+
+Package: libpam0g
+Status: install ok installed
+Priority: required
+Section: libs
+Installed-Size: 208
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: pam
+Version: 0.99.7.1-5ubuntu6.1
+Replaces: libpam0g-util
+Depends: debconf (>= 0.5) | debconf-2.0, libc6 (>= 2.4), libpam-runtime
+Suggests: libpam-doc
+Conflicts: libpam, libpam0 (<= 0.56-2)
+Description: Pluggable Authentication Modules library
+ Contains the C shared library for Linux-PAM, a suite of shared
+ libraries that enable the local system administrator to choose how
+ applications authenticate users.  In other words, without rewriting
+ or recompiling a PAM-aware application, it is possible to switch
+ between the authentication mechanism(s) it uses.  One may entirely
+ upgrade the local authentication system without touching the
+ applications themselves.
+Original-Maintainer: Steve Langasek <vorlon@xxxxxxxxxx>
+
+Package: hpijs
+Status: install ok installed
+Priority: optional
+Section: text
+Installed-Size: 1124
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: hplip (2.8.2-0ubuntu8)
+Version: 2.8.2+2.8.2-0ubuntu8
+Replaces: hpijs-ppds (<< 2.6.10+1.6.10-1), hplip-ppds (<< 1.6.10-1)
+Depends: cupsddk, foomatic-filters, ghostscript (>= 8.60) | gs-gpl (>= 8.01-5) | gs-esp (>= 7.07.01-8) | gs-afpl (>= 7.04-2), hplip (>= 2.8.2-0ubuntu8), libc6 (>= 2.4), libcupsys2 (>= 1.3.4), libgcc1 (>= 1:4.1.1-21), libjpeg62, libsane (>= 1.0.11-3), libsnmp15 (>= 5.4.1~dfsg), libssl0.9.8 (>= 0.9.8f-1), libstdc++6 (>= 4.1.1-21), libusb-0.1-4 (>= 2:0.1.12)
+Suggests: hpijs-ppds (= 2.8.2+2.8.2-0ubuntu8), hplip-doc
+Description: HP Linux Printing and Imaging - gs IJS driver (hpijs)
+ This package contains an IJS printer driver for Ghostscript, which
+ adds support for most inkjet printers and some LaserJet printers
+ manufactured by HP.  It is also required for HPLIP fax support.
+ .
+ The Debian package of hpijs includes the so-called rss patch, to use
+ pure black ink instead of composite black in printers that don't do
+ color map conversion in firmware.
+ .
+ HPIJS can take advantage of Ghostscript IJS KRGB support when
+ available, to enhance black printing on printers that do color
+ map conversion in firmware and are thus not affected by the old
+ rss patch.
+ .
+ Users of the CUPS printing system are advised to also install the
+ hplip package, and use the hp CUPS backend to send data to the printer.
+ HPLIP supports USB, networked and parallel-port devices, and enables
+ extended HPIJS functionality such as border-less printing.
+ Selecting any hpijs ppd in CUPS will use hpijs automatically.
+ .
+ Users of spoolers other than CUPS with printers connected through USB or
+ parallel ports are advised to install the hpoj package.  Extended HPIJS
+ functionality will not be available.
+ .
+ HPIJS is meant to be used through the foomatic system (see the
+ foomatic-filters package).
+Original-Maintainer: Debian HPIJS and HPLIP maintainers <pkg-hpijs-devel@xxxxxxxxxxxxxxxxxxxxxxx>
+Homepage: http://hplip.sourceforge.net/
+
+Package: libusb-0.1-4
+Status: install ok installed
+Priority: important
+Section: libs
+Installed-Size: 96
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: libusb
+Version: 2:0.1.12-8
+Replaces: libusb0
+Depends: libc6 (>= 2.6.1-1)
+Conflicts: libusb0, libccid (<< 0.9.2-3)
+Description: userspace USB programming library
+ Library for programming USB applications without the knowledge
+ of Linux kernel internals.
+ .
+  Homepage: http://www.linux-usb.org/
+Original-Maintainer: Aurelien Jarno <aurel32@xxxxxxxxxx>
+
+Package: libgpg-error0
+Status: install ok installed
+Priority: important
+Section: libs
+Installed-Size: 200
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: libgpg-error
+Version: 1.4-2ubuntu7
+Depends: libc6 (>= 2.6.1-1)
+Description: library for common error values and messages in GnuPG components
+ Library that defines common error values for all GnuPG
+ components.  Among these are GPG, GPGSM, GPGME, GPG-Agent, libgcrypt,
+ pinentry, SmartCard Daemon and possibly more in the future.
+Original-Maintainer: Jose Carlos Garcia Sogo <jsogo@xxxxxxxxxx>
+
+Package: psmisc
+Status: install ok installed
+Priority: optional
+Section: admin
+Installed-Size: 492
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 22.6-1
+Replaces: procps (<< 1:1.2)
+Depends: libc6 (>= 2.6.1-1), libncurses5 (>= 5.6)
+Description: Utilities that use the proc filesystem
+ This package contains three little utilities that use the proc FS:
+ .
+ `fuser' identifies processes using files (similar to Sun's or SGI's fuser).
+ `killall' kills processes by name, e.g. killall -HUP named. `pstree' shows
+ the currently running processes as a tree
+Original-Maintainer: Craig Small <csmall@xxxxxxxxxx>
+
+Package: ucf
+Status: install ok installed
+Priority: optional
+Section: utils
+Installed-Size: 248
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: all
+Version: 3.005
+Depends: coreutils (>= 5.91), debconf (>= 1.5.19) | cdebconf
+Conffiles:
+ /etc/ucf.conf 5565b8b26108c49ba575ba452cd69b3e
+Description: Update Configuration File: preserve user changes to config files.
+ Debian policy mandates that user changes to configuration files must be
+ preserved during package upgrades. The easy way to achieve this behavior
+ is to make the configuration file a 'conffile', in which case dpkg
+ handles the file specially during upgrades, prompting the user as
+ needed.
+ .
+ This is appropriate only if it is possible to distribute a default
+ version that will work for most installations, although some system
+ administrators may choose to modify it. This implies that the
+ default version will be part of the package distribution, and must
+ not be modified by the maintainer scripts during installation (or at
+ any other time).
+ .
+ This script attempts to provide conffile-like handling for files that
+ may not be labelled conffiles, and are not shipped in a Debian package,
+ but handled by the postinst instead. This script allows one to
+ maintain files in /etc, preserving user changes and in general
+ offering the same facilities while upgrading that dpkg normally
+ provides for 'conffiles'.
+ .
+ Additionally, this script provides facilities for transitioning a
+ file that had not been provided with conffile-like protection to come
+ under this schema, and attempts to minimize questions asked at
+ installation time. Indeed, the transitioning facility is better than the
+ one offered by dpkg while transitioning a file from a non-conffile to
+ conffile status.
+Original-Maintainer: Manoj Srivastava <srivasta@xxxxxxxxxx>
+
+Package: lftp
+Status: install ok installed
+Priority: optional
+Section: net
+Installed-Size: 1448
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 3.6.1-1
+Depends: libc6 (>= 2.6.1-1), libgcc1 (>= 1:4.2.1), libgnutls13 (>= 1.7.17-0), libncurses5 (>= 5.6), libreadline5 (>= 5.2), netbase
+Conffiles:
+ /etc/lftp.conf fb91b37fc323cf22c214a0f78bda759b
+Description: Sophisticated command-line FTP/HTTP client programs
+ Lftp is a file retrieving tool that supports FTP, HTTP, FISH, SFTP, HTTPS
+ and FTPS protocols under both IPv4 and IPv6. Lftp has an amazing set of
+ features, while preserving its interface as simple and easy as possible.
+ .
+ The main two advantages over other ftp clients are reliability and ability
+ to perform tasks in background. It will reconnect and reget the file being
+ transferred if the connection broke. You can start a transfer in background
+ and continue browsing on the ftp site. It does this all in one process. When
+ you have started background jobs and feel you are done, you can just exit
+ lftp and it automatically moves to nohup mode and completes the transfers.
+ It has also such nice features as reput and mirror. It can also download a
+ file as soon as possible by using several connections at the same time.
+ .
+ Lftp can also be scriptable, it can be used to mirror sites, it lets you
+ copy files among remote servers (even between FTP and HTTP). It has an
+ extensive online help. It supports bookmarks, and connecting to several
+ ftp/http sites at the same time.
+ .
+ This package also includes lftpget - A simple non-interactive
+ tool for downloading files.
+ .
+ http://lftp.yar.ru/
+Original-Maintainer: Noèl Köthe <noel@xxxxxxxxxx>
+
+Package: perl-modules
+Status: install ok installed
+Priority: standard
+Section: perl
+Installed-Size: 11680
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: all
+Source: perl
+Version: 5.8.8-12
+Replaces: libpod-parser-perl, libansicolor-perl, libfile-temp-perl, libnet-perl, libattribute-handlers-perl, libcgi-pm-perl, libi18n-langtags-perl, liblocale-maketext-perl, libmath-bigint-perl, libnet-ping-perl, libtest-harness-perl, libtest-simple-perl, liblocale-codes-perl
+Provides: libpod-parser-perl, libansicolor-perl, libfile-temp-perl, libnet-perl, libattribute-handlers-perl, libcgi-pm-perl, libi18n-langtags-perl, liblocale-maketext-perl, libmath-bigint-perl, libnet-ping-perl, libtest-harness-perl, libtest-simple-perl, liblocale-codes-perl
+Depends: perl (>= 5.8.8-8)
+Conflicts: libpod-parser-perl (<< 1.32-1), libansicolor-perl (<< 1.10-1), libfile-temp-perl (<< 0.16-1), libnet-perl (<= 1:1.19-3), libattribute-handlers-perl (<< 0.78.02-1), libcgi-pm-perl (<< 3.15-1), libi18n-langtags-perl (<< 0.35-1), liblocale-maketext-perl (<< 1.08-1), libmath-bigint-perl (<< 1.77-1), libnet-ping-perl (<< 2.31-1), libtest-harness-perl (<< 2.56-1), libtest-simple-perl (<< 0.62-1), liblocale-codes-perl (<< 2.06.1-1)
+Conffiles:
+ /etc/perl/Net/libnet.cfg fb2946cae573b8ed3d654a180d458733
+Description: Core Perl modules
+ Architecture independent Perl modules.  These modules are part of Perl and
+ required if the `perl' package is installed.
+Original-Maintainer: Brendan O'Dea <bod@xxxxxxxxxx>
+
+Package: bsdutils
+Essential: yes
+Status: install ok installed
+Priority: required
+Section: utils
+Installed-Size: 164
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: util-linux (2.13.1-5ubuntu2)
+Version: 1:2.13.1-5ubuntu2
+Depends: libc6 (>= 2.4)
+Recommends: bsdmainutils
+Description: Basic utilities from 4.4BSD-Lite
+ This package contains the bare minimum number of BSD utilities needed
+ to boot a Debian system.  You should probably also install
+ bsdmainutils to get the remaining standard BSD utilities.
+ .
+ Included are: cal, col, colcrt, colrm, column, logger, renice,
+ script, scriptreplay, ul, wall
+Original-Maintainer: LaMont Jones <lamont@xxxxxxxxxx>
+
+Package: xbase-clients
+Status: install ok installed
+Priority: optional
+Section: x11
+Installed-Size: 24
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: all
+Source: xorg
+Version: 1:7.3+10ubuntu10.2
+Depends: x11-apps, x11-common, x11-session-utils, x11-utils, x11-xfs-utils, x11-xkb-utils, x11-xserver-utils, xauth, xinit
+Description: miscellaneous X clients - metapackage
+ An X client is a program that interfaces with an X server (almost always via
+ the X libraries), and thus with some input and output hardware like a
+ graphics card, monitor, keyboard, and pointing device (such as a mouse).
+ .
+ This package provides a miscellaneous assortment of several dozen X clients
+ that ship with the X Window System.
+ .
+ This package is provided for transition from earlier Debian releases, the
+ programs formerly in xutils and xbase-clients having been split out in smaller
+ packages.
+Original-Maintainer: Debian X Strike Force <debian-x@xxxxxxxxxxxxxxxx>
+
+Package: xserver-xorg-video-apm
+Status: install ok installed
+Priority: optional
+Section: x11
+Installed-Size: 228
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 1:1.1.1-10
+Replaces: xserver-xorg (<< 6.8.2-35), xserver-xorg-driver-apm
+Provides: xserver-xorg-video-2
+Depends: libc6 (>= 2.6.1-1), xserver-xorg-core (>= 2:1.4)
+Conflicts: xserver-xorg-driver-apm
+Description: X.Org X server -- APM display driver
+ This package provides the driver for the Alliance Pro Motion family
+ of video cards; specifically, the 6420, 6422, AT24, AT25, and AT3D
+ cards.
+ .
+ More information about X.Org can be found at:
+ <URL:http://www.X.org>
+ <URL:http://xorg.freedesktop.org>
+ <URL:http://lists.freedesktop.org/mailman/listinfo/xorg>
+ .
+ This package is built from the X.org xf86-video-apm driver module.
+Original-Maintainer: Debian X Strike Force <debian-x@xxxxxxxxxxxxxxxx>
+
+Package: powermanagement-interface
+Status: install ok installed
+Priority: optional
+Section: admin
+Installed-Size: 84
+Maintainer: Ubuntu Core developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 0.3.18
+Depends: acpi-support (>= 0.17)
+Description: platform neutral powermanagement interface
+ Provides an abstracted layer above the platform specific power management
+ interfaces, with a consistent API so that higher level tools can interact
+ with those interfaces.
+Original-Maintainer: Thom May <thom@xxxxxxxxxx>
+
+Package: policykit
+Status: install ok installed
+Priority: optional
+Section: admin
+Installed-Size: 340
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 0.7-2ubuntu7
+Depends: adduser, consolekit, dbus, libc6 (>= 2.4), libdbus-1-3 (>= 1.1.1), libdbus-glib-1-2 (>= 0.74), libglib2.0-0 (>= 2.14.0), libpam0g (>= 0.99.7.1), libpolkit-dbus2, libpolkit-grant2, libpolkit2
+Recommends: policykit-gnome
+Breaks: policykit-gnome (<< 0.7)
+Conffiles:
+ /etc/init.d/policykit d55a7744cce61eca848ad2dfca3a7e0b
+ /etc/pam.d/polkit 01dc501e2d43ffc9f76b338e24a55e80
+ /etc/dbus-1/system.d/org.freedesktop.PolicyKit.conf 023639bec061cfb8bc805864ffff99f8
+ /etc/PolicyKit/PolicyKit.conf 38b1918da7965c7837d3b15566e12a69
+Description: framework for managing administrative policies and privileges
+ PolicyKit is an application-level toolkit for defining and handling the policy
+ that allows unprivileged processes to speak to privileged processes.
+ .
+ It is a framework for centralizing the decision making process with respect to
+ granting access to privileged operations (like calling the HAL Mount() method)
+ for unprivileged (desktop) applications.
+Homepage: http://hal.freedesktop.org/docs/PolicyKit/
+Original-Maintainer: Utopia Maintenance Team <pkg-utopia-maintainers@xxxxxxxxxxxxxxxxxxxxxxx>
+
+Package: hicolor-icon-theme
+Status: install ok installed
+Priority: optional
+Section: misc
+Installed-Size: 1328
+Maintainer: Ubuntu Core Developers <ubuntu-devel@xxxxxxxxxxxxxxxx>
+Architecture: all
+Version: 0.10-1ubuntu1
+Description: default fallback theme for FreeDesktop.org icon themes
+ This is the default fallback theme used by implementations of the
+ Freedesktop.org Icon Theme specification.
+Original-Maintainer: Ross Burton <ross@xxxxxxxxxx>
+
+Package: dvd+rw-tools
+Status: install ok installed
+Priority: optional
+Section: utils
+Installed-Size: 412
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 7.0-9ubuntu1
+Depends: genisoimage, libc6 (>= 2.7-1), libgcc1, libstdc++6 (>= 4.1.1-21)
+Suggests: cdrskin
+Description: DVD+-RW/R tools
+ dvd+rw-tools makes it possible to burn DVD images created by dvdauthor or
+ genisoimage to DVD+R, DVD+RW, DVD-R, and DVD-RW disks, replacing
+ cdrecord-proDVD in many cases.
+ .
+ The package contains:
+ .
+   * growisofs to burn DVD images or create a data DVD on the fly
+   * dvd+rw-format to format a DVD+RW
+   * dvd+rw-mediainfo to give details about DVD disks
+ .
+ and some programs to control the write speed and obtain information from
+ DVD-RAM.
+Homepage: http://fy.chalmers.se/~appro/linux/DVD+RW/
+Original-Maintainer: Daniel Baumann <daniel@xxxxxxxxxx>
+
+Package: jockey-common
+Status: install ok installed
+Priority: optional
+Section: admin
+Installed-Size: 956
+Maintainer: Martin Pitt <martin.pitt@xxxxxxxxxx>
+Architecture: all
+Source: jockey
+Version: 0.3.3-0ubuntu8
+Replaces: restricted-manager-core
+Provides: restricted-manager-core
+Depends: guidance-backends, python (>= 2.5), python (<< 2.6), python-central (>= 0.6.5), python-xdg
+Recommends: linux-restricted-modules-generic | linux-restricted-modules-386
+Conflicts: restricted-manager-core
+Description: user interface and desktop integration for driver management
+ Jockey provides a user interface for configuring third-party drivers,
+ such as the Nvidia and ATI fglrx X.org and various Wireless LAN
+ kernel modules.
+ .
+ This package contains the common data shared between the frontends.
+Python-Version: 2.5
+
+Package: libpolkit-dbus2
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 92
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: policykit
+Version: 0.7-2ubuntu7
+Depends: libc6 (>= 2.4), libdbus-1-3 (>= 1.1.1), libpolkit2, libselinux1
+Description: library for accessing PolicyKit via D-Bus
+ PolicyKit is a toolkit for defining and handling the policy that
+ allows unprivileged processes to speak to privileged processes.
+ .
+ This package contains a helper library for obtaining seat, session
+ and caller information via D-Bus and ConsoleKit.
+Homepage: http://hal.freedesktop.org/docs/PolicyKit/
+Original-Maintainer: Utopia Maintenance Team <pkg-utopia-maintainers@xxxxxxxxxxxxxxxxxxxxxxx>
+
+Package: xserver-xorg-video-voodoo
+Status: install ok installed
+Priority: optional
+Section: x11
+Installed-Size: 108
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 1:1.1.1-5
+Replaces: xserver-xorg (<< 6.8.2-35), xserver-xorg-driver-voodoo
+Provides: xserver-xorg-video-2
+Depends: libc6 (>= 2.6.1-1), xserver-xorg-core (>= 2:1.4)
+Conflicts: xserver-xorg-driver-voodoo
+Description: X.Org X server -- Voodoo display driver
+ This package provides the driver for 3dfx Voodoo1 and Voodoo2 chipsets.
+ .
+ More information about X.Org can be found at:
+ <URL:http://www.X.org>
+ <URL:http://xorg.freedesktop.org>
+ <URL:http://lists.freedesktop.org/mailman/listinfo/xorg>
+ .
+ This package is built from the X.org xf86-video-voodoo driver module.
+Original-Maintainer: Debian X Strike Force <debian-x@xxxxxxxxxxxxxxxx>
+
+Package: libpolkit-grant2
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 84
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: policykit
+Version: 0.7-2ubuntu7
+Depends: libc6 (>= 2.4), libdbus-1-3 (>= 1.1.1), libglib2.0-0 (>= 2.12.0), libpolkit2
+Description: library for obtaining privileges via PolicyKit
+ PolicyKit is a toolkit for defining and handling the policy that
+ allows unprivileged processes to speak to privileged processes.
+ .
+ This package contains a library for obtaining privileges via PolicyKit.
+Homepage: http://hal.freedesktop.org/docs/PolicyKit/
+Original-Maintainer: Utopia Maintenance Team <pkg-utopia-maintainers@xxxxxxxxxxxxxxxxxxxxxxx>
+
+Package: libxss1
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 60
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: libxss
+Version: 1:1.1.2-1
+Depends: libc6 (>= 2.5-0ubuntu1), libx11-6, libxext6, x11-common
+Description: X11 Screen Saver extension library
+ libXss provides an X Window System client interface to the MIT-SCREEN-SAVER
+ extension to the X protocol.
+ .
+ The Screen Saver extension allows clients behaving as screen savers to
+ register themselves with the X server, to better integrate themselves with
+ the running session.
+ .
+ More information about X.Org can be found at:
+ <URL:http://xorg.freedesktop.org>
+ <URL:http://lists.freedesktop.org/mailman/listinfo/xorg>
+Original-Maintainer: Debian X Strike Force <debian-x@xxxxxxxxxxxxxxxx>
+
+Package: libxkbfile1
+Status: install ok installed
+Priority: optional
+Section: x11
+Installed-Size: 188
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: libxkbfile
+Version: 1:1.0.4-1
+Depends: libc6 (>= 2.5-0ubuntu1), libx11-6, x11-common
+Description: X11 keyboard file manipulation library
+ libxkbfile provides an interface to read and manipulate description files for
+ XKB, the X11 keyboard configuration extension.
+ .
+ More information about X.Org can be found at:
+ <URL:http://xorg.freedesktop.org>
+ <URL:http://lists.freedesktop.org/mailman/listinfo/xorg>
+Original-Maintainer: Debian X Strike Force <debian-x@xxxxxxxxxxxxxxxx>
+
+Package: lsb-release
+Status: install ok installed
+Priority: extra
+Section: misc
+Installed-Size: 84
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: all
+Source: lsb
+Version: 3.2-4ubuntu1
+Depends: python
+Recommends: apt
+Suggests: lsb
+Description: Linux Standard Base version reporting utility
+ The Linux Standard Base (http://www.linuxbase.org/) is a standard
+ core system that third-party applications written for Linux can
+ depend upon.
+ .
+ The lsb-release command is a simple tool to help identify the Linux
+ distribution being used and its compliance with the Linux Standard Base.
+ LSB conformance will not be reported unless the required metapackages are
+ installed.
+ .
+ While it is intended for use by LSB packages, this command may also
+ be useful for programmatically distinguishing between a pure Debian
+ installation and derived distributions.
+Homepage: http://www.linux-foundation.org/en/LSB
+Original-Maintainer: Chris Lawrence <lawrencc@xxxxxxxxxx>
+Python-Version: current
+
+Package: ttf-arabeyes
+Status: install ok installed
+Priority: optional
+Section: x11
+Installed-Size: 6140
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: all
+Version: 2.0-1ubuntu1
+Depends: defoma
+Conffiles:
+ /etc/defoma/hints/ttf-arabeyes.hints fed351b8aed81a0b3ac0b6ee4f2a283f
+Description: Arabeyes GPL TrueType Arabic fonts
+ This is a set of TrueType Arabic fonts released under the GNU
+ General Public License by the Arabeyes Project (www.arabeyes.org).
+Original-Maintainer: Mohammed Adnène Trojette <adn+deb@xxxxxxxx>
+
+Package: update-inetd
+Status: install ok installed
+Priority: standard
+Section: admin
+Installed-Size: 92
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: all
+Version: 4.27-0.6
+Depends: debconf | debconf-2.0
+Conflicts: netbase (<< 4.27)
+Description: inetd.conf updater
+ This package provides a program used by other packages to automatically
+ update /etc/inetd.conf.
+Original-Maintainer: Marco d'Itri <md@xxxxxxxx>
+
+Package: ssl-cert
+Status: install ok installed
+Priority: optional
+Section: utils
+Installed-Size: 100
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: all
+Version: 1.0.14-0ubuntu2
+Depends: adduser, debconf (>= 0.5) | debconf-2.0, openssl
+Description: Simple debconf wrapper for openssl
+ This is a package to enable unattended installs of software that
+ need to create ssl certificates.
+ Basically, it's just a wrapper for openssl req that feeds it the correct
+ user variables.
+Original-Maintainer: Debian Apache Maintainers <debian-apache@xxxxxxxxxxxxxxxx>
+
+Package: libuniconf4.4
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 428
+Maintainer: Ubuntu Core developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: wvstreams
+Version: 4.4.1-0ubuntu2
+Depends: libc6 (>= 2.7-1), libwvstreams4.4-base, libwvstreams4.4-extras, libxplc0.3.13
+Conflicts: libuniconf4.0 (<< 4.0.2-5), libuniconf4.2
+Conffiles:
+ /etc/uniconf.conf 925e121db10e1ac8c003aabca9a7f52a
+Description: C++ network libraries for rapid application development
+ UniConf is a configuration system that can serve as the centrepiece among
+ many other, existing configuration systems, such as:
+  * GConf
+  * KConfig
+  * Windows registry
+  * Mutt ;)
+ .
+ UniConf can also be accessed over the network, with authentication, allowing
+ easy replication of configuration data via the UniReplicateGen.
+Original-Maintainer: Simon Law <sfllaw@xxxxxxxxxx>
+
+Package: xserver-xorg-video-s3virge
+Status: install ok installed
+Priority: optional
+Section: x11
+Installed-Size: 160
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 1:1.9.1-7
+Replaces: xserver-xorg (<< 6.8.2-35), xserver-xorg-driver-s3virge
+Provides: xserver-xorg-video-2
+Depends: libc6 (>= 2.6.1-1), xserver-xorg-core (>= 2:1.4)
+Conflicts: xserver-xorg-driver-s3virge
+Description: X.Org X server -- S3 ViRGE display driver
+ This package provides the driver for the S3 ViRGE and Trio3D family
+ of chipsets.  It does not support Trio64 or S3 96x cards; support for
+ these can be found in the xserver-xorg-video-s3 package.  Support for
+ S3 Savage chipsets can be found in xserver-xorg-video-savage.
+ .
+ More information about X.Org can be found at:
+ <URL:http://www.X.org>
+ <URL:http://xorg.freedesktop.org>
+ <URL:http://lists.freedesktop.org/mailman/listinfo/xorg>
+ .
+ This package is built from the X.org xf86-video-s3virge driver module.
+Original-Maintainer: Debian X Strike Force <debian-x@xxxxxxxxxxxxxxxx>
+
+Package: libnm-util0
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 108
+Maintainer: Ubuntu Core Dev Team <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: network-manager
+Version: 0.6.6-0ubuntu5
+Depends: libc6 (>= 2.7-1), libdbus-1-3 (>= 1.1.1), libdbus-glib-1-2 (>= 0.74), libgcrypt11 (>= 1.2.2), libglib2.0-0 (>= 2.16.0)
+Description: network management framework (shared library)
+ NetworkManager attempts to keep an active network connection available at all
+ times. It is intended only for the desktop use-case, and is not intended for
+ usage on servers. The point of NetworkManager is to make networking
+ configuration and setup as painless and automatic as possible.  If using DHCP,
+ NetworkManager is _intended_ to replace default routes, obtain IP addresses
+ from a DHCP server, and change nameservers whenever it sees fit.
+ .
+ This package contains a convenience library to ease the access to
+ NetworkManager.
+ .
+  Homepage: http://www.gnome.org/projects/NetworkManager/
+Original-Maintainer: Riccardo Setti <giskard@xxxxxxxxxx>
+
+Package: libssl0.9.8
+Status: install ok installed
+Priority: important
+Section: libs
+Installed-Size: 6408
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: openssl
+Version: 0.9.8g-4ubuntu3.3
+Depends: debconf (>= 0.5) | debconf-2.0, libc6 (>= 2.4), zlib1g (>= 1:1.2.3.3.dfsg-1)
+Conflicts: libssl, libssl096-dev (<< 0.9.6-2), openssl (<< 0.9.6-2), ssleay (<< 0.9.2b)
+Description: SSL shared libraries
+ libssl and libcrypto shared libraries needed by programs like
+ apache-ssl, telnet-ssl and openssh.
+ .
+ It is part of the OpenSSL implementation of SSL.
+Original-Maintainer: Debian OpenSSL Team <pkg-openssl-devel@xxxxxxxxxxxxxxxxxxxxxxx>
+
+Package: bzip2
+Status: install ok installed
+Priority: optional
+Section: utils
+Installed-Size: 152
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 1.0.4-2ubuntu4
+Replaces: libbz2 (<< 0.9.5d-3)
+Depends: libbz2-1.0 (= 1.0.4-2ubuntu4)
+Suggests: bzip2-doc
+Description: high-quality block-sorting file compressor - utilities
+ bzip2 is a freely available, patent free, high-quality data compressor.
+ It typically compresses files to within 10% to 15% of the best available
+ techniques, whilst being around twice as fast at compression and six
+ times faster at decompression.
+ .
+ bzip2 compresses files using the Burrows-Wheeler block-sorting text
+ compression algorithm, and Huffman coding.  Compression is generally
+ considerably better than that achieved by more conventional
+ LZ77/LZ78-based compressors, and approaches the performance of the PPM
+ family of statistical compressors.
+ .
+ The archive file format of bzip2 (.bz2) is incompatible with that of its
+ predecessor, bzip (.bz).
+Homepage: http://www.bzip.org/
+Original-Maintainer: Anibal Monsalve Salazar <anibal@xxxxxxxxxx>
+
+Package: vim-common
+Status: install ok installed
+Priority: important
+Section: editors
+Installed-Size: 564
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: vim
+Version: 1:7.1-138+1ubuntu3
+Replaces: manpages-it (<= 0.3.4-3), manpages-pl (<= 20060331-1), vim-runtime (<< 1:7.0-010+1)
+Depends: libc6 (>= 2.7-1)
+Recommends: vim | vim-gnome | vim-gtk | vim-lesstif | vim-nox | vim-tiny
+Conffiles:
+ /etc/vim/vimrc 080bf1170946fa1c181ba69a74522435
+ /etc/vim/vimrc.tiny 34664bfab6542c69cdfcaf8a39229cca
+Description: Vi IMproved - Common files
+ Vim is an almost compatible version of the UNIX editor Vi.
+ .
+ Many new features have been added: multi level undo, syntax
+ highlighting, command line history, on-line help, filename
+ completion, block operations, folding, Unicode support, etc.
+ .
+ This package contains files shared by all non GUI-enabled vim
+ variants (vim and vim-tiny currently) available in Debian.
+ Examples of such shared files are: manpages, common executables
+ like vimtutor and xxd, and configuration files.
+Homepage: http://www.vim.org/
+Original-Maintainer: Debian VIM Maintainers <pkg-vim-maintainers@xxxxxxxxxxxxxxxxxxxxxxx>
+
+Package: libwavpack1
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 208
+Maintainer: Ubuntu MOTU Developers <ubuntu-motu@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: wavpack
+Version: 4.41.0-1
+Depends: libc6 (>= 2.5-5)
+Description: an audio codec (lossy and lossless) - library
+ WavPack is a completely open audio compression format providing lossless,
+ high-quality lossy, and a unique hybrid compression mode. Although the
+ technology is loosely based on previous versions of WavPack, the new version
+ 4 format has been designed from the ground up to offer unparalleled
+ performance and functionality.
+ .
+ http://www.wavpack.com
+ .
+ This package contains the shared libraries necessary to run programs
+ using libwavpack.
+Original-Maintainer: Sebastian Dröge <slomo@xxxxxxxxxx>
+
+Package: xfsprogs
+Status: install ok installed
+Priority: optional
+Section: admin
+Installed-Size: 3236
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 2.9.4-2
+Provides: fsck-backend
+Depends: libc6 (>= 2.6.1-1), libreadline5 (>= 5.2), libuuid1
+Suggests: xfsdump, attr, dvhtool, quota
+Conflicts: xfsdump (<< 2.0.0)
+Description: Utilities for managing the XFS filesystem
+ A set of commands to use the XFS filesystem, including mkfs.xfs.
+ .
+ XFS is a high performance journaling filesystem which originated
+ on the SGI IRIX platform.  It is completely multi-threaded, can
+ support large files and large filesystems, extended attributes,
+ variable block sizes, is extent based, and makes extensive use of
+ Btrees (directories, extents, free space) to aid both performance
+ and scalability.
+ .
+ Refer to the documentation at http://oss.sgi.com/projects/xfs/
+ for complete details.  This implementation is on-disk compatible
+ with the IRIX version of XFS.
+Original-Maintainer: Nathan Scott <nathans@xxxxxxxxxx>
+
+Package: ttf-thai-tlwg
+Status: install ok installed
+Priority: optional
+Section: x11
+Installed-Size: 2760
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: all
+Source: thaifonts-scalable
+Version: 1:0.4.8-1
+Replaces: xfonts-thai-ttf
+Depends: defoma, x-ttcidfont-conf
+Conflicts: xfonts-thai-ttf
+Conffiles:
+ /etc/fonts/conf.avail/65-ttf-thai-tlwg.conf 290ce57a61f2c49b62c1d75ef861f242
+ /etc/fonts/conf.avail/90-ttf-thai-tlwg-synthetic.conf cfa384f101379a9015f051a42a9408f8
+ /etc/defoma/hints/ttf-thai-tlwg.hints 80bf237265cd6f14dc707c8b53db34d2
+Description: Thai fonts in TrueType format
+ This package provides some free-licensed fonts that are
+ enhanced by developpers from Thai Linux Working Group.
+ In TrueType format.
+ .
+ At the moment, it provides two families from the National Font
+ Project (Garuda, Norasi), one from NECTEC (Loma) and three
+ developed by TLWG itself (Tlwg Mono, Tlwg Typewriter, Purisa).
+Original-Maintainer: Theppitak Karoonboonyanan <thep@xxxxxxxxxxxxxx>
+Homepage: http://linux.thai.net/projects/thaifonts-scalable
+
+Package: openssl
+Status: install ok installed
+Priority: optional
+Section: utils
+Installed-Size: 800
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 0.9.8g-4ubuntu3.3
+Depends: libc6 (>= 2.4), libssl0.9.8 (>= 0.9.8f-1), zlib1g (>= 1:1.2.3.3.dfsg-1)
+Suggests: ca-certificates, openssl-doc
+Conflicts: ssleay (<< 0.9.2b)
+Conffiles:
+ /etc/ssl/openssl.cnf 0b1cf9a835b829131d630b7c2fe55f3c
+Description: Secure Socket Layer (SSL) binary and related cryptographic tools
+ This package contains the openssl binary and related tools.
+ .
+ It is part of the OpenSSL implementation of SSL.
+ .
+ You need it to perform certain cryptographic actions like:
+  -  Creation of RSA, DH and DSA key parameters;
+  -  Creation of X.509 certificates, CSRs and CRLs;
+  -  Calculation of message digests;
+  -  Encryption and decryption with ciphers;
+  -  SSL/TLS client and server tests;
+  -  Handling of S/MIME signed or encrypted mail.
+Original-Maintainer: Debian OpenSSL Team <pkg-openssl-devel@xxxxxxxxxxxxxxxxxxxxxxx>
+
+Package: python-gnupginterface
+Status: install ok installed
+Priority: optional
+Section: python
+Installed-Size: 144
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: all
+Source: gnupginterface
+Version: 0.3.2-9ubuntu1
+Provides: python2.4-gnupginterface, python2.5-gnupginterface, python2.3-gnupginterface
+Depends: python-support (>= 0.2), gnupg (>= 1.2.1)
+Description: Python interface to GnuPG (GPG)
+ GnuPGInterface is a Python module to interface with GnuPG.
+ It concentrates on interacting with GnuPG via filehandles,
+ providing access to control GnuPG via versatile and extensible means.
+ .
+ This module is based on GnuPG::Interface, a Perl module by the same
+ author.
+Original-Maintainer: Guilherme de S. Pastore <gpastore@xxxxxxxxxxxxxx>
+
+Package: python-software-properties
+Status: install ok installed
+Priority: optional
+Section: admin
+Installed-Size: 1040
+Maintainer: Michael Vogt <michael.vogt@xxxxxxxxxx>
+Architecture: all
+Source: software-properties
+Version: 0.63ubuntu1
+Depends: iso-codes, lsb-release, python (>= 2.4), python-apt (>= 0.6.20ubuntu16), python-central (>= 0.5.62), python-gnupginterface, unattended-upgrades
+Description: manage the repositories that you install software from
+ This software provides an abstraction of the used apt repositories.
+ It allows you to easily manage your distribution and independent software
+ vendor software sources.
+Python-Version: >= 2.4
+
+Package: xorg
+Status: install ok installed
+Priority: optional
+Section: x11
+Installed-Size: 24
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 1:7.3+10ubuntu10.2
+Provides: x-window-system, x-window-system-core
+Depends: libgl1-mesa-glx | libgl1, libglu1-mesa, x11-apps, x11-common, x11-session-utils, x11-utils, x11-xfs-utils, x11-xkb-utils, x11-xserver-utils, xauth, xfonts-100dpi (>= 1:1.0.0-1), xfonts-75dpi (>= 1:1.0.0-1), xfonts-base (>= 1:1.0.0-1), xfonts-scalable (>= 1:1.0.0-1), xfonts-utils, xinit, xkb-data, xserver-xorg, xterm | x-terminal-emulator
+Suggests: xorg-docs
+Description: X.Org X Window System
+ This metapackage provides the components for a standalone
+ workstation running the X Window System.  It provides the X libraries, an X
+ server, a set of fonts, and a group of basic X clients and utilities.
+ .
+ Higher level metapackages, such as those for desktop environments, can
+ depend on this package and simplify their dependencies.
+ .
+ It should be noted that a package providing x-window-manager should also
+ be installed to ensure a comfortable X experience.
+Original-Maintainer: Debian X Strike Force <debian-x@xxxxxxxxxxxxxxxx>
+
+Package: python2.5-minimal
+Status: install ok installed
+Priority: required
+Section: python
+Installed-Size: 4336
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: python2.5
+Version: 2.5.2-2ubuntu4
+Replaces: python2.5 (<< 2.5.2-1)
+Depends: libc6 (>= 2.4), zlib1g (>= 1:1.2.3.3.dfsg-1)
+Suggests: binfmt-support
+Conflicts: binfmt-support (<< 1.1.2)
+Conffiles:
+ /etc/python2.5/sitecustomize.py d6b276695157bde06a56ba1b2bc53670
+Description: A minimal subset of the Python language (version 2.5)
+ This package contains the interpreter and some essential modules.  It can
+ be used in the boot process for some basic tasks.
+ See /usr/share/doc/python2.5-minimal/README.Debian for a list of the modules
+ contained in this package.
+Original-Maintainer: Matthias Klose <doko@xxxxxxxxxx>
+Python-Runtime: python2.5
+Python-Version: 2.5
+
+Package: ncurses-bin
+Essential: yes
+Status: install ok installed
+Priority: required
+Section: utils
+Installed-Size: 292
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: ncurses
+Version: 5.6+20071124-1ubuntu2
+Provides: tput
+Pre-Depends: libc6 (>= 2.7-1), libncurses5 (>= 5.6+20071006-3)
+Conflicts: ncurses, tput
+Description: Terminal-related programs and man pages
+ This package contains the programs used for manipulating the terminfo
+ database and individual terminfo entries, as well as some programs for
+ resetting terminals and such.
+Original-Maintainer: Daniel Baumann <daniel@xxxxxxxxxx>
+
+Package: perl-base
+Essential: yes
+Status: install ok installed
+Priority: required
+Section: perl
+Installed-Size: 2096
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: perl
+Version: 5.8.8-12
+Replaces: perl (<< 5.8.8-5), perl-modules (<< 5.8.8-8), libperl5.8 (<< 5.8.0-20), libscalar-list-utils-perl, libclass-multimethods-perl (<< 1.70-4)
+Provides: perl5-base, perlapi-5.8.0, perlapi-5.8.1, perlapi-5.8.2, perlapi-5.8.3, perlapi-5.8.4, perlapi-5.8.6, perlapi-5.8.7, perlapi-5.8.8, libscalar-list-utils-perl
+Pre-Depends: libc6 (>= 2.6.1-1)
+Suggests: perl
+Conflicts: autoconf2.13 (<< 2.13-45), libscalar-list-utils-perl (<< 1:1.18-1)
+Description: The Pathologically Eclectic Rubbish Lister
+ A scripting language with delusions of full language-hood, Perl is used
+ in many system scripts and utilities.
+ .
+ This is a stripped down Perl with only essential libraries.  To make
+ full use of Perl, you'll want to install the `perl', `perl-modules' and
+ optionally `perl-doc' packages which supplement this one.
+Original-Maintainer: Brendan O'Dea <bod@xxxxxxxxxx>
+
+Package: sysv-rc
+Status: install ok installed
+Priority: required
+Section: admin
+Installed-Size: 272
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: all
+Source: sysvinit
+Version: 2.86.ds1-14.1ubuntu45
+Replaces: file-rc, sysvinit (<< 2.85-1)
+Suggests: bum, sysv-rc-conf
+Conflicts: file-rc
+Description: System-V-like runlevel change mechanism
+ This package provides support for the System-V like system
+ for booting, shutting down and changing runlevels,
+ configured through symbolic links in /etc/rc?.d/.
+Original-Maintainer: Debian sysvinit maintainers <pkg-sysvinit-devel@xxxxxxxxxxxxxxxxxxxxxxx>
+
+Package: apt
+Status: install ok installed
+Priority: important
+Section: admin
+Installed-Size: 5200
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 0.7.9ubuntu17
+Replaces: libapt-pkg-dev (<< 0.3.7), libapt-pkg-doc (<< 0.3.7)
+Provides: libapt-pkg-libc6.7-6-4.6
+Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1-21), libstdc++6 (>= 4.2.1-4)
+Recommends: ubuntu-keyring
+Suggests: apt-doc, aptitude | synaptic | gnome-apt | wajig, bzip2, dpkg-dev, gnupg, lzma
+Conffiles:
+ /etc/apt/apt.conf.d/01autoremove 1ac5624cfc30a8272b5a024868c3643a
+ /etc/apt/apt.conf.d/01ubuntu 674b4d7efe6aa8e102ab3b0c3390d967
+ /etc/logrotate.d/apt 172476f0940b1793f6190ed60031871a
+ /etc/cron.daily/apt 9b2d17639bf49f024f65b74bc8b3630a
+Description: Advanced front-end for dpkg
+ This is Debian's next generation front-end for the dpkg package manager.
+ It provides the apt-get utility and APT dselect method that provides a
+ simpler, safer way to install and upgrade packages.
+ .
+ APT features complete installation ordering, multiple source capability
+ and several other unique features, see the Users Guide in apt-doc.
+Original-Maintainer: APT Development Team <deity@xxxxxxxxxxxxxxxx>
+
+Package: fdutils
+Status: install ok installed
+Priority: optional
+Section: utils
+Installed-Size: 980
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 5.5-20060227-1.1
+Replaces: miscutils, manpages (<< 1.11-3)
+Depends: libc6 (>= 2.5-0ubuntu1), debconf (>= 0.5) | debconf-2.0, debianutils (>= 1.7)
+Recommends: mtools (>= 3.8-1)
+Conffiles:
+ /etc/mediaprm 634ea1478e3db69c0a12fc08dbd057fb
+ /etc/fdmount.conf b9365eca8374c0b402c19a7a9b781b77
+Description: Linux floppy utilities
+ This package contains utilities for formatting extra capacity
+ disks, for automatic floppy disk mounting and unmounting, etc.
+ .
+ The package includes the following items:
+ .
+   * superformat: formats high capacity disks of (up to 1992k
+     for high density disks or up to 3984k for extra density
+     disks)
+   * fdmount: automatically mounts/unmounts disks when they are
+     inserted/removed.
+   * xdfcopy: formats, reads and writes OS/2's XDF disks.
+   * MAKEFLOPPIES: creates the floppy devices in /dev
+   * getfdprm: prints the current disk geometry (number of
+     sectors, track and heads etc)
+   * setfdprm: sets the current disk geometry
+   * fdrawcmd: sends raw commands to the floppy driver
+   * floppycontrol: configure the floppy driver
+   * General documentation about the floppy driver
+ .
+ Note that these utilities do not work for USB floppy drives, because
+ there is no direct access to the floppy controller.
+ .
+  Homepage: http://www.tux.org/pub/knaff/fdutils/
+Original-Maintainer: Anibal Monsalve Salazar <anibal@xxxxxxxxxx>
+
+Package: libxslt1.1
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 448
+Maintainer: Ubuntu Core developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: libxslt
+Version: 1.1.22-1ubuntu1
+Depends: libc6 (>= 2.6.1-1), libgcrypt11 (>= 1.2.2), libxml2 (>= 2.6.29)
+Conflicts: libxslt1 (<< 1.1.2-2)
+Description: XSLT processing library - runtime library
+ XSLT is an XML language for defining transformations of XML files from
+ XML to some other arbitrary format, such as XML, HTML, plain text, etc.
+ using standard XSLT stylesheets. libxslt is a C library which
+ implements XSLT.
+ .
+ This package contains libxslt library used by applications for XSLT
+ transformations.
+Original-Maintainer: Debian XML/SGML Group <debian-xml-sgml-pkgs@xxxxxxxxxxxxxxxxxxxxxxx>
+
+Package: cupsys-common
+Status: install ok installed
+Priority: optional
+Section: net
+Installed-Size: 5228
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: all
+Source: cupsys
+Version: 1.3.7-1ubuntu3
+Replaces: cupsys (<< 1.2.3)
+Conflicts: cupsys (<< 1.2.3)
+Description: Common UNIX Printing System(tm) - common files
+ The Common UNIX Printing System (or CUPS(tm)) is a printing system and
+ general replacement for lpd and the like.  It supports the Internet
+ Printing Protocol (IPP), and has its own filtering driver model for
+ handling various document types.
+ .
+ This package provides common files for CUPS server and client packages.
+ .
+ The terms "Common UNIX Printing System" and "CUPS" are trademarks of
+ Easy Software Products (www.easysw.com), and refer to the original
+ source packages from which these packages are made.
+Original-Maintainer: Debian CUPS Maintainers <pkg-cups-devel@xxxxxxxxxxxxxxxxxxxxxxx>
+
+Package: pciutils
+Status: install ok installed
+Priority: optional
+Section: admin
+Installed-Size: 768
+Maintainer: Ubuntu Core developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 1:2.2.4-1.1ubuntu4
+Depends: libc6 (>= 2.4), zlib1g (>= 1:1.2.3.3.dfsg-1)
+Suggests: curl | wget | lynx
+Description: Linux PCI Utilities
+ This package contains various utilities for inspecting and setting of
+ devices connected to the PCI bus.
+ .
+  Homepage: http://atrey.karlin.mff.cuni.cz/~mj/pciutils.shtml
+Original-Maintainer: Debian pciutils Maintainers <pkg-pciutils-discuss@xxxxxxxxxxxxxxxxxxxxxxx>
+
+Package: libdbus-glib-1-2
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 188
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: dbus-glib
+Version: 0.74-2
+Depends: libc6 (>= 2.1.3), libdbus-1-3 (>= 1.1.1), libglib2.0-0 (>= 2.16.0)
+Description: simple interprocess messaging system (GLib-based shared library)
+ D-Bus is a message bus, used for sending messages between applications.
+ Conceptually, it fits somewhere in between raw sockets and CORBA in
+ terms of complexity.
+ .
+ This package provides the GLib-based shared library for applications using the
+ GLib interface to D-Bus.
+ .
+ See the dbus description for more information about D-Bus in general.
+Original-Maintainer: Utopia Maintenance Team <pkg-utopia-maintainers@xxxxxxxxxxxxxxxxxxxxxxx>
+
+Package: ubuntu-standard
+Status: install ok installed
+Priority: optional
+Section: metapackages
+Installed-Size: 52
+Maintainer: Matt Zimmerman <mdz@xxxxxxxxxx>
+Architecture: i386
+Source: ubuntu-meta
+Version: 1.102
+Depends: at, cpio, cron, dmidecode, dnsutils, dosfstools, ed, file, ftp, hdparm, info, inputattach, iptables, logrotate, lshw, lsof, ltrace, man-db, memtest86+, mime-support, nano, parted, popularity-contest, psmisc, rsync, strace, time, ufw, w3m, wget
+Recommends: apparmor-utils, bash-completion, command-not-found, fdutils, friendly-recovery, iputils-arping, iputils-tracepath, manpages, mlocate, mtr-tiny, ntfs-3g, openssh-client, ppp, pppconfig, pppoeconf, reiserfsprogs, tcpdump, telnet, update-manager-core, uuid-runtime
+Description: The Ubuntu standard system
+ This package depends on all of the packages in the Ubuntu standard system.
+ This set of packages provides a comfortable command-line Unix-like
+ environment.
+ .
+ It is also used to help ensure proper upgrades, so it is recommended that
+ it not be removed.
+
+Package: libgc1c2
+Status: install ok installed
+Priority: standard
+Section: libs
+Installed-Size: 252
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: libgc
+Version: 1:6.8-1.1
+Replaces: libgc1
+Depends: libc6 (>= 2.6.1-1), libgcc1 (>= 1:4.2.1), libstdc++6 (>= 4.2.1)
+Conflicts: libgc1
+Description: conservative garbage collector for C and C++
+ Boehm's GC is a garbage collecting storage allocator that is
+ intended to be used as a plug-in replacement for C's malloc.
+Original-Maintainer: Ryan Murray <rmurray@xxxxxxxxxx>
+
+Package: pxljr
+Status: install ok installed
+Priority: optional
+Section: text
+Installed-Size: 152
+Maintainer: Ubuntu MOTU Developers <ubuntu-motu@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 1.1-0ubuntu1
+Depends: libc6 (>= 2.5-0ubuntu1), libjpeg62
+Description: Driver for HP's Color LaserJet 35xx/36xx color laser printers
+ HP's Color LaserJets 35xx and 36xx are supported by HP's HPIJS driver
+ (part of HPLIP), but HPIJS supports only the lowest quality level of
+ the three which are available under Windows. This driver which is not
+ developed at HP but by a independent developer supports all modes and
+ so provided the highest printout quality for these printers.
+ .
+ Home Page: http://sourceforge.net/projects/hp-pxl-jetready/
+Original-Maintainer: Till Kamppeter <till.kamppeter@xxxxxxxxx>
+
+Package: mtr-tiny
+Status: install ok installed
+Priority: standard
+Section: net
+Installed-Size: 104
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: mtr
+Version: 0.72-2ubuntu1
+Replaces: mtr
+Depends: libc6 (>= 2.7-1), libncurses5 (>= 5.6+20071006-3)
+Conflicts: mtr, suidmanager (<< 0.50)
+Description: Full screen ncurses traceroute tool
+ mtr combines the functionality of the 'traceroute' and 'ping' programs
+ in a single network diagnostic tool.
+ .
+ As mtr starts, it investigates the network connection between the host
+ mtr runs on and a user-specified destination host.  After it
+ determines the address of each network hop between the machines,
+ it sends a sequence ICMP ECHO requests to each one to determine the
+ quality of the link to each machine.  As it does this, it prints
+ running statistics about each machine.
+ .
+ mtr-tiny is compiled without support for X and conserves disk space.
+Original-Maintainer: Robert Woodcock <rcw@xxxxxxxxxx>
+
+Package: xserver-xorg-core
+Status: install ok installed
+Priority: optional
+Section: x11
+Installed-Size: 10884
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: xorg-server
+Version: 2:1.4.1~git20080131-1ubuntu9.2
+Replaces: xserver-common, xserver-xfree86 (<< 1:7.0.0), xserver-xorg (<< 6.8.2-38)
+Provides: xserver
+Depends: libc6 (>= 2.4), libdbus-1-3 (>= 1.1.1), libdrm2 (>= 2.3.0), libfontenc1, libgcc1 (>= 1:4.1.1-21), libhal1 (>= 0.5.8.1), libpixman-1-0 (>= 0.9.6), libxau6, libxdmcp6, libxfont1 (>= 1:1.2.9), x11-common (>= 1:7.0.0), xserver-xorg
+Recommends: xfonts-base, xkb-data
+Suggests: xfonts-100dpi | xfonts-75dpi, xfonts-scalable
+Conflicts: xkb-data (<< 0.9), xserver-common, xserver-xfree86 (<< 1:7.0.0), xserver-xorg (<< 6.8.2-38), xserver-xorg-input, xserver-xorg-input-wacom (<< 0.7.8), xserver-xorg-video, xserver-xorg-video-1.0, xserver-xorg-video-1.9
+Conffiles:
+ /etc/X11/xserver/SecurityPolicy 5e63f298721bdd4062d3c66967df99ba
+Description: Xorg X server - core server
+ The Xorg X server is an X server for several architectures and operating
+ systems, which is derived from the XFree86 4.x series of X servers.
+ .
+ The Xorg server supports most modern graphics hardware from most vendors,
+ and supersedes all XFree86 X servers.
+ .
+ The Xorg server either needs fonts installed on the local host, or needs to
+ know of a remote hosts that provides font services (with xfs, for instance).
+ The former means that fonts packages are mandatory. The latter means that
+ font packages may be gratuitous. To err on the side of caution, install at
+ least the xfonts-base, xfonts-100dpi or xfonts-75dpi, and xfonts-scalable
+ packages.
+ .
+ More information about X.Org can be found at:
+ <URL:http://www.X.org>
+ <URL:http://xorg.freedesktop.org>
+ <URL:http://lists.freedesktop.org/mailman/listinfo/xorg>
+ .
+ This package is built from the X.org xserver module.
+Original-Maintainer: Debian X Strike Force <debian-x@xxxxxxxxxxxxxxxx>
+
+Package: bc
+Status: install ok installed
+Priority: standard
+Section: math
+Installed-Size: 196
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 1.06.94-3ubuntu1
+Depends: libc6 (>= 2.6.1-1), libncurses5 (>= 5.6+20071006-3), libreadline5 (>= 5.2)
+Description: The GNU bc arbitrary precision calculator language
+ GNU bc is an interactive algebraic language with arbitrary precision which
+ follows the POSIX 1003.2 draft standard, with several extensions including
+ multi-character variable names, an `else' statement and full Boolean
+ expressions.  GNU bc does not require the separate GNU dc program.
+ Home page: http://directory.fsf.org/GNU/bc.html
+Original-Maintainer: John Hasler <jhasler@xxxxxxxxxx>
+
+Package: netbase
+Status: install ok installed
+Priority: important
+Section: admin
+Installed-Size: 100
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: all
+Version: 4.30ubuntu1
+Depends: ifupdown (>= 0.6.4-4.9), lsb-base (>= 3.0-6), update-inetd
+Conflicts: openbsd-inetd (<< 0.20050402-3), inetutils-inetd (<< 2:1.4.3+20060719-3)
+Conffiles:
+ /etc/protocols 65d78e621ed69eed69f854c3ee2e5942
+ /etc/rpc f0b6f6352bf886623adc04183120f83b
+ /etc/services f436d2e0ed02b7b73bd10c6693e95ac3
+ /etc/init.d/networking 6cfe64a38d7478ca0f3ecc364c108a81
+Description: Basic TCP/IP networking system
+ This package provides the necessary infrastructure for basic TCP/IP based
+ networking.
+Original-Maintainer: Marco d'Itri <md@xxxxxxxx>
+
+Package: libmagic1
+Status: install ok installed
+Priority: standard
+Section: libs
+Installed-Size: 1780
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: file
+Version: 4.21-3ubuntu1
+Depends: libc6 (>= 2.4), zlib1g (>= 1:1.2.3.3.dfsg-1)
+Suggests: file
+Description: File type determination library using "magic" numbers
+ This library can be used to classify files according to magic number tests. It
+ implements the core functionality of the file command.
+ .
+  Homepage: <http://www.darwinsys.com/file/>
+Original-Maintainer: Daniel Baumann <daniel@xxxxxxxxxx>
+
+Package: libdrm2
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 88
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: libdrm
+Version: 2.3.0-4ubuntu1
+Depends: libc6 (>= 2.6)
+Description: Userspace interface to kernel DRM services -- runtime
+ This library implements the userspace interface to the kernel DRM
+ services.  DRM stands for "Direct Rendering Manager", which is the
+ kernelspace portion of the "Direct Rendering Infrastructure" (DRI).
+ The DRI is currently used on Linux to provide hardware-accelerated
+ OpenGL drivers.
+ .
+ This package provides the runtime environment for libdrm.
+Original-Maintainer: Debian X Strike Force <debian-x@xxxxxxxxxxxxxxxx>
+
+Package: whiptail
+Status: install ok installed
+Priority: important
+Section: utils
+Installed-Size: 96
+Maintainer: Ubuntu Core developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: newt
+Version: 0.52.2-11.2ubuntu1
+Replaces: newt0.10, newt0.21 (<< 0.21-4), whiptail-utf8
+Provides: whiptail-provider, whiptail-utf8
+Depends: libc6 (>= 2.7-1), libnewt0.52 (>= 0.52.2), libpopt0 (>= 1.10), libslang2 (>= 2.0.7-1)
+Conflicts: whiptail-provider
+Description: Displays user-friendly dialog boxes from shell scripts
+ Whiptail is a "dialog" replacement using newt instead of ncurses. It
+ provides a method of displaying several different types of dialog boxes
+ from shell scripts. This allows a developer of a script to interact with
+ the user in a much friendlier manner.
+Original-Maintainer: Alastair McKinstry <mckinstry@xxxxxxxxxx>
+
+Package: xserver-xorg-video-openchrome
+Status: install ok installed
+Priority: optional
+Section: x11
+Installed-Size: 388
+Maintainer: Ubuntu MOTU <ubuntu-motu@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 1:0.2.901-0ubuntu4
+Provides: xserver-xorg-video-2
+Depends: libc6 (>= 2.7-1), libchromexvmc1 (= 1:0.2.901-0ubuntu4), libchromexvmcpro1 (= 1:0.2.901-0ubuntu4), xserver-xorg-core (>= 1:1.1.1)
+Description: X.Org X server -- VIA display driver
+ OpenChrome is a project for the development of free and open-source software
+ for the VIA UniChrome video chipsets.
+ .
+ Originally called the 'snapshot' release, since it was a snapshot of an
+ experimental branch of the unichrome cvs code, this is a continued development
+ of the open source unichrome driver (from <URL:http://unichrome.sf.net>) which
+ also incorporates support for the unichrome-pro chipsets.
+ .
+ Support for hardware acceleration (XvMC) for all chipsets has subsequently
+ been ripped out of the unichrome.sf.net driver. Therefore your only option if
+ you wish to make use of the acceleration features of your VIA chip with free
+ and open-source drivers is to use this version of the driver.
+ .
+ This driver is shipped to be loaded as 'openchrome' on xorg.conf.
+ .
+ More information about Openchrome can be found at:
+ http://www.openchrome.org
+Original-Maintainer: Eric Work <work.eric@xxxxxxxxx>
+
+Package: ntfs-3g
+Status: install ok installed
+Priority: optional
+Section: otherosfs
+Installed-Size: 132
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 1:1.2216-1ubuntu2
+Depends: libc6 (>= 2.4), libfuse2 (>= 2.6), libntfs-3g23
+Pre-Depends: fuse-utils
+Description: read-write NTFS driver for FUSE
+ The ntfs-3g driver is an open source, GPL licensed, third generation Linux
+ NTFS driver which was implemented by the Linux-NTFS project. It provides
+ full read-write access to NTFS, excluding access to encrypted files, writing
+ compressed files, changing file ownership, access right.
+ .
+ Technically it's based on and a major improvement to the third generation
+ Linux NTFS driver, ntfsmount. The improvements includes functionality,
+ quality and performance enhancements.
+ .
+ ntfs-3g is based on FUSE (userspace filesystem framework for Linux), thus
+ you will have to prepare fuse kernel module to be able to use it.
+ .
+ Fuse is available in any recent kernel. No need to prepare a kernel module
+ if you are already running Debian Etch kernel or newer.
+Homepage: http://www.ntfs-3g.org/
+Original-Maintainer: Adam Cécile (Le_Vert) <gandalf@xxxxxxxxxxx>
+
+Package: libsepol1
+Status: install ok installed
+Priority: required
+Section: libs
+Installed-Size: 260
+Maintainer: Ubuntu Hardened Developers <ubuntu-hardened@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: libsepol
+Version: 2.0.20-0ubuntu3
+Depends: libc6 (>= 2.7-1)
+Description: SELinux binary policy, run-time library
+ libsepol provides an API for the manipulation of SELinux binary policies.
+ It is used by checkpolicy (the policy compiler) and similar tools
+ to perform specific transformations on binary policies.
+Original-Maintainer: Caleb Case <ccase@xxxxxxxxxx>
+
+Package: libaspell15
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 2412
+Maintainer: Ubuntu Core developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: aspell
+Version: 0.60.5-1ubuntu2
+Depends: libc6 (>= 2.7-1), libgcc1, libstdc++6 (>= 4.1.1-21)
+Recommends: aspell-en | aspell-dictionary | aspell6a-dictionary
+Suggests: aspell
+Conflicts: aspell-bin (<< 0.60.3-2), aspell6-dictionary
+Description: GNU Aspell spell-checker runtime library
+ These are the runtime parts of the Aspell and pspell spell-checking
+ toolkits, needed by applications that use the toolkits at runtime.
+ .
+ For a standalone spell-checker, install aspell as well.
+Original-Maintainer: Brian Nelson <pyro@xxxxxxxxxx>
+
+Package: dmidecode
+Status: install ok installed
+Priority: important
+Section: utils
+Installed-Size: 168
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 2.9-1ubuntu1
+Depends: libc6 (>= 2.6)
+Conflicts: lm-sensors (<< 2.8.1-2)
+Description: Dump Desktop Management Interface data
+ The Desktop Management Interface provides a standardized description of
+ a computer's hardware, including characteristics such as BIOS serial
+ number and hardware connectors.  dmidecode provides a dump of the DMI
+ data available from the BIOS.  It is used as a back-end tool by other
+ hardware detection programs.
+Original-Maintainer: Petter Reinholdtsen <pere@xxxxxxxxxx>
+
+Package: libelfg0
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 168
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: libelf
+Version: 0.8.6-4
+Depends: libc6 (>= 2.6-1)
+Conflicts: libelf, libelf0 (<= 0.6.4-5)
+Description: an ELF object file access library
+ The elf library provides routines to access, and manipulate, Elf object
+ files. It is still not complete, but is required for a number of programs,
+ such as Eli (a state of the art compiler generation system), and Elk (the
+ Extension Language Kit - an implementation of the Scheme programming
+ language.)
+ .
+ This shared library may be needed by pre-packaged programs. To compile
+ programs with this library, you will need to install the libelfg0-dev
+ package as well.
+Original-Maintainer: Alex Pennace <alex@xxxxxxxxxxx>
+
+Package: libpam-modules
+Status: install ok installed
+Priority: required
+Section: libs
+Installed-Size: 784
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: pam
+Version: 0.99.7.1-5ubuntu6.1
+Replaces: libpam-umask, libpam0g-util
+Provides: libpam-mkhomedir, libpam-motd, libpam-umask
+Depends: libc6 (>= 2.4), libdb4.6, libpam0g (>= 0.99.7.1), libselinux1
+Conflicts: libpam-mkhomedir, libpam-motd, libpam-umask, libpam0g-modules (= 0.66-1), suidmanager (<< 0.50)
+Conffiles:
+ /etc/security/access.conf eb8cb5be37e31b248ab9e306e35580c4
+ /etc/security/pam_env.conf ed3f430e418ad366ddb23307a8755249
+ /etc/security/group.conf 5e9ed603009d3862ebb2978f9b213579
+ /etc/security/limits.conf bc7881de956ac6cdb30a97df95cecdb0
+ /etc/security/time.conf c23fcbb29dda6c1499e6a5e5ade0265e
+ /etc/security/namespace.conf 13830c6635568d1542ada566007ff577
+ /etc/security/namespace.init d805ae04de63e1609990dbd710144271
+Description: Pluggable Authentication Modules for PAM
+ This package completes the set of modules for PAM. It includes the
+  pam_unix_*.so module as well as some specialty modules.
+Original-Maintainer: Steve Langasek <vorlon@xxxxxxxxxx>
+
+Package: xserver-xorg-video-vmware
+Status: install ok installed
+Priority: optional
+Section: x11
+Installed-Size: 128
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 1:10.15.2-1ubuntu2
+Replaces: xserver-xorg (<< 6.8.2-35), xserver-xorg-driver-vmware
+Provides: xserver-xorg-video-2
+Depends: libc6 (>= 2.7-1), xserver-xorg-core (>= 2:1.4)
+Conflicts: xserver-xorg-driver-vmware
+Description: X.Org X server -- VMware display driver
+ This package provides the driver for VMware client sessions, i.e. if Linux
+ is running inside a VMware session.
+ .
+ More information about X.Org can be found at:
+ <URL:http://www.X.org>
+ <URL:http://xorg.freedesktop.org>
+ <URL:http://lists.freedesktop.org/mailman/listinfo/xorg>
+ .
+ This package is built from the X.org xf86-video-vmware driver module.
+Original-Maintainer: Debian X Strike Force <debian-x@xxxxxxxxxxxxxxxx>
+
+Package: tzdata
+Status: install ok installed
+Priority: required
+Section: libs
+Installed-Size: 6172
+Maintainer: Martin Pitt <martin.pitt@xxxxxxxxxx>
+Architecture: all
+Version: 2008c-1ubuntu0.8.04
+Replaces: libc0.1, libc0.3, libc6, libc6.1, locales
+Provides: tzdata-lenny
+Depends: debconf | debconf-2.0
+Description: time zone and daylight-saving time data
+ This package contains data required for the implementation of
+ standard local time for many representative locations around the
+ globe. It is updated periodically to reflect changes made by
+ political bodies to time zone boundaries, UTC offsets, and
+ daylight-saving rules.
+Original-Maintainer: GNU Libc Maintainers <debian-glibc@xxxxxxxxxxxxxxxx>
+
+Package: avahi-autoipd
+Status: install ok installed
+Priority: optional
+Section: net
+Installed-Size: 184
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: avahi
+Version: 0.6.22-2ubuntu4
+Depends: adduser, libc6 (>= 2.7-1), libdaemon0 (>= 0.11)
+Recommends: dhcp3-client, iproute
+Conflicts: zeroconf
+Conffiles:
+ /etc/network/if-up.d/avahi-autoipd e69fbeb60636a1df402aa98a62a23703
+ /etc/network/if-down.d/avahi-autoipd dadd013707fd54993ae9b90e2efef5ec
+ /etc/avahi/avahi-autoipd.action 15bf768c80154cca95fe445f6b4473dd
+ /etc/dhcp3/dhclient-enter-hooks.d/avahi-autoipd e368253f0124803ced35feb49f356041
+ /etc/dhcp3/dhclient-exit-hooks.d/zzz_avahi-autoipd 3cbecc4fe6c2b7d878d687244fb84a0b
+Description: Avahi IPv4LL network address configuration daemon
+ Avahi is a fully LGPL framework for Multicast DNS Service Discovery.
+ It allows programs to publish and discover services and hosts
+ running on a local network with no specific configuration.  For
+ example you can plug into a network and instantly find printers to
+ print to, files to look at and people to talk to.
+ .
+ This tool implements IPv4LL, "Dynamic Configuration of IPv4 Link-Local
+ Addresses" (IETF RFC3927), a protocol for automatic IP address
+ configuration from the link-local 169.254.0.0/16 range without the
+ need for a central server. It is primarily intended to be used in
+ ad-hoc networks which lack a DHCP server.
+Homepage: http://avahi.org/
+Original-Maintainer: Utopia Maintenance Team <pkg-utopia-maintainers@xxxxxxxxxxxxxxxxxxxxxxx>
+
+Package: python
+Status: install ok installed
+Priority: important
+Section: python
+Installed-Size: 600
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: all
+Source: python-defaults
+Version: 2.5.2-0ubuntu1
+Replaces: python-base, python-xmlbase, python2.3 (<= 2.3.2-6)
+Provides: python-email, python-xmlbase
+Depends: python-minimal (= 2.5.2-0ubuntu1), python2.5 (>= 2.5.2)
+Suggests: python-doc (>= 2.5.2-0ubuntu1), python-profiler (>= 2.5.2-0ubuntu1), python-tk (>= 2.5.2-0ubuntu1)
+Conflicts: python-base, python-bz2, python-central (<< 0.5.5), python-csv, python-xmlbase, python2.1 (<= 2.1.2), python2.3 (<< 2.3.5-14)
+Description: An interactive high-level object-oriented language (default version)
+ Python, the high-level, interactive object oriented language,
+ includes an extensive class library with lots of goodies for
+ network programming, system administration, sounds and graphics.
+ .
+ This package is a dependency package, which depends on Debian's default
+ Python version (currently v2.5).
+Original-Maintainer: Matthias Klose <doko@xxxxxxxxxx>
+
+Package: python-apport
+Status: install ok installed
+Priority: optional
+Section: python
+Installed-Size: 428
+Maintainer: Martin Pitt <martin.pitt@xxxxxxxxxx>
+Architecture: all
+Source: apport
+Version: 0.108.2
+Replaces: python-apport-utils
+Depends: gdb, python (>= 2.5), python (<< 2.6), python-apt, python-central (>= 0.6.5), python-launchpad-bugs (>= 0.2.11), python-problem-report (>= 0.94)
+Conflicts: python-apport-utils
+Conffiles:
+ /etc/apport/blacklist.d/README.blacklist c2ed1eb9a17ec2550747b4960cf4b73c
+ /etc/apport/crashdb.conf bc74dd3441cc4e107e1d42ceb0b39008
+Description: apport crash report handling library
+ This Python package provides high-level functions for creating and
+ handling apport crash reports:
+ .
+  * Query available and new reports.
+  * Add OS, packaging, and process runtime information to a report.
+  * Various frontend utility functions.
+  * Python hook to generate crash reports when Python scripts fail.
+Python-Version: 2.5
+
+Package: libfontconfig1
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 252
+Maintainer: Ubuntu Core developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: fontconfig
+Version: 2.5.0-2ubuntu3
+Depends: fontconfig-config (= 2.5.0-2ubuntu3), libc6 (>= 2.7-1), libexpat1 (>= 1.95.8), libfreetype6 (>= 2.3.5), zlib1g (>= 1:1.2.3.3.dfsg-1)
+Description: generic font configuration library - runtime
+ Fontconfig is a font configuration and customization library, which
+ does not depend on the X Window System. It is designed to locate
+ fonts within the system and select them according to requirements
+ specified by applications.
+ .
+ This package contains the runtime library needed to launch applications
+ using fontconfig.
+Original-Maintainer: Keith Packard <keithp@xxxxxxxxxx>
+
+Package: xserver-xorg-input-wacom
+Status: install ok installed
+Priority: optional
+Section: x11
+Installed-Size: 232
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: wacom-tools
+Version: 1:0.7.9.8-0ubuntu3
+Replaces: wacom-tools (<< 1:0.7.9.3-2)
+Provides: xserver-xorg-input-2
+Depends: xserver-xorg-core (>= 2:1.4)
+Suggests: wacom-tools
+Conflicts: wacom-tools (<< 1:0.7.9.3-2)
+Conffiles:
+ /etc/udev/rules.d/50-xserver-xorg-input-wacom.rules 32d6382e25ec786b58a85c4714ace969
+ /etc/init.d/xserver-xorg-input-wacom 44565f5c4538fba2ab0474e30c2ffe84
+Description: X.Org X server -- Wacom input driver
+ This package provides the X.Org driver and udev support for Wacom tablet
+ devices.
+ .
+ Note that it is not a part of the X.Org distribution since X11R6: this driver
+ is from the linuxwacom project. See http://linuxwacom.sf.net for details.
+ .
+ You will also require a kernel module which supports your tablet. Many types
+ are supported by the 'wacom' module supplied with current Linux kernels. If
+ yours is not one of them (yet) then see the wacom-kernel-source package for
+ the most up to date module available.
+Original-Maintainer: Ron Lee <ron@xxxxxxxxxx>
+
+Package: ifupdown
+Status: install ok installed
+Priority: important
+Section: admin
+Installed-Size: 252
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 0.6.8ubuntu8
+Replaces: netbase (<< 4.00)
+Depends: net-tools, libc6 (>= 2.6-1), debconf (>= 1.2.0) | debconf-2.0, lsb-base (>= 1.3-9ubuntu3)
+Suggests: iproute, dhcp3-client | dhcp-client, ppp
+Conffiles:
+ /etc/init.d/loopback e1fa0c2883b3cb51898025a453135eba
+ /etc/udev/rules.d/85-ifupdown.rules 87c80c5291ac8e2415ef3f0369007859
+Description: high level tools to configure network interfaces
+ This package provides the tools ifup and ifdown which may be used to
+ configure (or, respectively, deconfigure) network interfaces based on
+ interface definitions in the file /etc/network/interfaces.
+Original-Maintainer: Anthony Towns <ajt@xxxxxxxxxx>
+
+Package: libxxf86dga1
+Status: install ok installed
+Priority: optional
+Section: x11
+Installed-Size: 72
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: libxxf86dga
+Version: 2:1.0.2-1
+Depends: libc6 (>= 2.6.1-1), libx11-6, libxext6, x11-common
+Description: X11 Direct Graphics Access extension library
+ libXxf86dga provides the XFree86-DGA extension, which allows direct
+ graphics access to a framebuffer-like region, and also allows relative
+ mouse reporting, et al.  It is mainly used by games and emulators for
+ games.
+ .
+ More information about X.Org can be found at:
+ <URL:http://xorg.freedesktop.org>
+ <URL:http://lists.freedesktop.org/mailman/listinfo/xorg>
+Original-Maintainer: Debian X Strike Force <debian-x@xxxxxxxxxxxxxxxx>
+
+Package: libxext6
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 116
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: libxext
+Version: 2:1.0.3-2build1
+Depends: libc6 (>= 2.6), libx11-6, libxau6, x11-common
+Description: X11 miscellaneous extension library
+ libXext provides an X Window System client interface to several extensions to
+ the X protocol.
+ .
+ The supported protocol extensions are:
+  - DOUBLE-BUFFER (DBE), the Double Buffer extension;
+  - DPMS, the VESA Display Power Management System extension;
+  - Extended-Visual-Information (EVI), an extension for gathering extra
+    information about the X server's visuals;
+  - LBX, the Low Bandwidth X extension;
+  - MIT-SHM, the MIT X client/server shared memory extension;
+  - MIT-SUNDRY-NONSTANDARD, a miscellaneous extension by MIT;
+  - Multi-Buffering, the multi-buffering and stereo display extension;
+  - SECURITY, the X security extension;
+  - SHAPE, the non-rectangular shaped window extension;
+  - SYNC, the X synchronization extension;
+  - TOG-CUP, the Open Group's Colormap Utilization extension;
+  - XC-APPGROUP, the X Consortium's Application Group extension;
+  - XC-MISC, the X Consortium's resource ID querying extension;
+  - XTEST, the X test extension (this is one of two client-side
+    implementations; the other is in the libXtst library, provided by the
+    libxtst6 package);
+ .
+ libXext also provides a small set of utility functions to aid authors of
+ client APIs for X protocol extensions.
+ .
+ More information about X.Org can be found at:
+ <URL:http://xorg.freedesktop.org>
+ <URL:http://lists.freedesktop.org/mailman/listinfo/xorg>
+Original-Maintainer: Debian X Strike Force <debian-x@xxxxxxxxxxxxxxxx>
+
+Package: xterm
+Status: install ok installed
+Priority: optional
+Section: x11
+Installed-Size: 1084
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 229-1ubuntu1
+Provides: x-terminal-emulator
+Depends: libc6 (>= 2.4), libfontconfig1 (>= 2.4.0), libice6 (>= 1:1.0.0), libncurses5 (>= 5.6+20071006-3), libsm6, libx11-6, libxaw7, libxext6, libxft2 (>> 2.1.1), libxmu6, libxt6, xbitmaps
+Recommends: xutils
+Suggests: xfonts-cyrillic
+Conffiles:
+ /etc/X11/app-defaults/KOI8RXTerm 532f391c666e56881300470947c635dd
+ /etc/X11/app-defaults/UXTerm 952670ddfbb90d0a7c36e87e7a796595
+ /etc/X11/app-defaults/XTerm 243f29c3b3ce880e617a63ba30f359a1
+ /etc/X11/app-defaults/XTerm-color 657eb990e33aeddb17c7e2185321878c
+Description: X terminal emulator
+ xterm is a terminal emulator for the X Window System.  It provides DEC VT102
+ and Tektronix 4014 compatible terminals for programs that cannot use the
+ window system directly.  This version implements ISO/ANSI colors and most of
+ the control sequences used by DEC VT220 terminals.
+ .
+ This package provides four commands: xterm, which is the traditional
+ terminal emulator; uxterm, which is a wrapper around xterm that is
+ intelligent about locale settings (especially those which use the UTF-8
+ character encoding), but which requires the luit program from the xutils
+ package; koi8rxterm, a wrapper similar to uxterm for locales that use the
+ KOI8-R character set; and lxterm, a simple wrapper that chooses which of the
+ previous commands to execute based on the user's locale settings.
+ .
+ A complete list of control sequences supported by the X terminal emulator
+ is provided in /usr/share/doc/xterm.
+ .
+ The xterm program uses bitmap images provided by the xbitmaps package.
+ .
+ Those interested in using koi8rxterm will likely want to install the
+ xfonts-cyrillic package as well.
+Original-Maintainer: Debian X Strike Force <debian-x@xxxxxxxxxxxxxxxx>
+
+Package: myspell-en-gb
+Status: install ok installed
+Priority: optional
+Section: text
+Installed-Size: 608
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: all
+Source: openoffice.org-dictionaries
+Version: 1:2.4.0~m240-1ubuntu1
+Provides: myspell-dictionary, myspell-dictionary-en
+Depends: dictionaries-common (>= 0.10) | openoffice.org-updatedicts
+Conflicts: openoffice.org (<= 1.0.3-2)
+Description: English_british dictionary for myspell
+ This is the English_british dictionary for use with the myspell spellchecker
+ which is currently used within OpenOffice.org and the mozilla
+ spellchecker.
+Original-Maintainer: Debian OpenOffice Team <debian-openoffice@xxxxxxxxxxxxxxxx>
+
+Package: libogg0
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 80
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: libogg
+Version: 1.1.3-3ubuntu1
+Depends: libc6 (>= 2.7-1)
+Description: Ogg Bitstream Library
+ Libogg is a library for manipulating ogg bitstreams.  It handles
+ both making ogg bitstreams and getting packets from ogg bitstreams.
+Original-Maintainer: Debian Xiph.org Maintainers <pkg-xiph-maint@xxxxxxxxxxxxxxxxxxxxxxx>
+
+Package: x11-session-utils
+Status: install ok installed
+Priority: optional
+Section: x11
+Installed-Size: 280
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 7.3+1
+Replaces: xbase-clients (<= 1:7.2.ds2-3), xutils (<= 1:7.1.ds.3-1), smproxy, xsm (<= 1:1.0.1-1)
+Depends: libc6 (>= 2.6.1-1), libice6 (>= 1:1.0.0), libsm6, libx11-6, libxaw7, libxmu6, libxt6, cpp
+Pre-Depends: x11-common (>= 1:7.0.0)
+Conflicts: smproxy, xsm (<= 1:1.0.1-1)
+Conffiles:
+ /etc/X11/app-defaults/XSm 34f161c4cba12ff40099e12b40e511d3
+Description: X session utilities
+ This package provides the X session manager and related tools:
+  - rstart;
+  - smproxy, a session manager proxy for X clients that do not use the X
+    session manager protocol;
+  - xsm, a session manager for X sessions;
+ Installation of an rsh or ssh daemon (server) is necessary if rstartd is
+ to be used, and installation of an rsh or ssh client is necessary if
+ rstart is to be used.
+Original-Maintainer: Debian X Strike Force <debian-x@xxxxxxxxxxxxxxxx>
+
+Package: lupin-casper
+Status: install ok installed
+Priority: extra
+Section: misc
+Installed-Size: 72
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: all
+Source: lupin
+Version: 0.20
+Depends: casper (>= 0.98), initramfs-tools (>= 0.40ubuntu11)
+Description: Add support for loop-mount installations to casper
+ The Wubi installer provides a means for installing Ubuntu into a
+ loop-mounted filesystem image hosted on a Windows filesystem. lupin-casper
+ provides hooks to find an ISO image on a hard disk and to read a preseed
+ file from a hard disk, which are used in the early part of this process.
+Original-Maintainer: Agostino Russo <agostino.russo@xxxxxxxxx>
+
+Package: liblzo2-2
+Status: install ok installed
+Priority: important
+Section: libs
+Installed-Size: 196
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: lzo2
+Version: 2.02-3
+Depends: libc6 (>= 2.5-5)
+Description: data compression library
+ LZO is a portable, lossless data compression library.
+ It offers pretty fast compression and very fast decompression.
+ Decompression requires no memory.  In addition there are slower
+ compression levels achieving a quite competitive compression ratio
+ while still decompressing at this very high speed.
+ .
+ Web site: http://www.oberhumer.com/opensource/lzo/
+Original-Maintainer: Peter Eisentraut <petere@xxxxxxxxxx>
+
+Package: libxrender1
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 88
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: libxrender
+Version: 1:0.9.4-1
+Depends: libc6 (>= 2.6.1-1), libx11-6
+Description: X Rendering Extension client library
+ The X Rendering Extension (Render) introduces digital image composition as
+ the foundation of a new rendering model within the X Window System.
+ Rendering geometric figures is accomplished by client-side tesselation into
+ either triangles or trapezoids.  Text is drawn by loading glyphs into the
+ server and rendering sets of them.  The Xrender library exposes this
+ extension to X clients.
+ .
+ More information about X.Org can be found at:
+ <URL:http://xorg.freedesktop.org>
+ <URL:http://lists.freedesktop.org/mailman/listinfo/xorg>
+Original-Maintainer: Debian X Strike Force <debian-x@xxxxxxxxxxxxxxxx>
+
+Package: ttf-bitstream-vera
+Status: install ok installed
+Priority: optional
+Section: x11
+Installed-Size: 732
+Maintainer: Ubuntu Core Developers <ubuntu-devel@xxxxxxxxxxxxxxxx>
+Architecture: all
+Version: 1.10-7
+Depends: defoma
+Recommends: x-ttcidfont-conf | fontconfig
+Conffiles:
+ /etc/defoma/hints/ttf-bitstream-vera.hints afd1963fa2faea0a4ad82b923d7d0424
+Description: The Bitstream Vera family of free TrueType fonts
+ This is a set of high-quality TrueType fonts created by Bitstream, Inc. and
+ released under a DFSG-free license. They are intended to remedy the lack of
+ free high-quality fonts for the free desktop environments.
+ .
+ They fully cover Western European languages (ISO-8859-1, ISO-8859-15) and
+ Turkish (ISO-8859-9). They also include a selection of mathematical and other
+ symbols and some limited support for Eastern European languages (parts of
+ ISO-8859-2). Non-latin scripts are not supported (use ttf-dejavu instead).
+Original-Maintainer: Daniel Baumann <daniel@xxxxxxxxxx>
+
+Package: hal-info
+Status: install ok installed
+Priority: optional
+Section: admin
+Installed-Size: 476
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: all
+Version: 20080508+git20080601-0ubuntu0.8.04
+Replaces: hal (<< 0.5.9)
+Conflicts: hal (<< 0.5.10)
+Description: Hardware Abstraction Layer - fdi files
+ HAL provides an abstract view on hardware.
+ .
+ This abstraction layer is simply an interface that makes it possible to
+ add support for new devices and new ways of connecting devices to the
+ computer, without modifying every application that uses the device.
+ It maintains a list of devices that currently exist, and can provide
+ information about those upon request.
+ .
+ This package contains various device information files (also known
+ as .fdi files) for the hal package.
+ These fdi files contain additional information that help to describe the
+ hardware more detailed, such as suspend/resume quirks for laptops, music
+ player or photo camera types etc.
+Homepage: http://hal.freedesktop.org/
+Original-Maintainer: Utopia Maintenance Team <pkg-utopia-maintainers@xxxxxxxxxxxxxxxxxxxxxxx>
+
+Package: dbus
+Status: install ok installed
+Priority: optional
+Section: devel
+Installed-Size: 804
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 1.1.20-1ubuntu2
+Replaces: dbus-1, dbus-1-utils (<< 1.0.2-5), libdbus0
+Provides: dbus-1-utils
+Depends: adduser, consolekit (>= 0.2.3-3ubuntu2), debianutils (>= 1.22.0), libc6 (>= 2.4), libdbus-1-3 (>= 0.94), libexpat1 (>= 1.95.8), libselinux1, lsb-base (>= 3.1)
+Recommends: dbus-x11
+Conflicts: dbus-1, dbus-1-utils (<< 1.0.2-5), libdbus-1-1, libdbus0
+Conffiles:
+ /etc/dbus-1/session.conf f75223bfb9955f4cf8ffba1c770f6864
+ /etc/dbus-1/system.conf 28cb5aaa2179990e5fd0e24c54a5dfd0
+ /etc/default/dbus 0d0f25a2f993509c857eb262f6e22015
+ /etc/init.d/dbus 8a203636e9f09b29200779739cd36cda
+Description: simple interprocess messaging system
+ D-Bus is a message bus, used for sending messages between applications.
+ Conceptually, it fits somewhere in between raw sockets and CORBA in
+ terms of complexity.
+ .
+ D-Bus supports broadcast messages, asynchronous messages (thus
+ decreasing latency), authentication, and more. It is designed to be
+ low-overhead; messages are sent using a binary protocol, not using
+ XML. D-Bus also supports a method call mapping for its messages, but
+ it is not required; this makes using the system quite simple.
+ .
+ It comes with several bindings, including GLib, Python, Qt and Java.
+ .
+ This package contains the D-Bus daemon and related utilities.
+ .
+ The client-side library can be found in the libdbus-1-3 package, as it is no
+ longer contained in this package.
+Homepage: http://dbus.freedesktop.org/
+Original-Maintainer: Utopia Maintenance Team <pkg-utopia-maintainers@xxxxxxxxxxxxxxxxxxxxxxx>
+
+Package: dhcp3-client
+Status: install ok installed
+Priority: important
+Section: net
+Installed-Size: 572
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: dhcp3
+Version: 3.0.6.dfsg-1ubuntu9
+Depends: debconf (>= 0.5) | debconf-2.0, debianutils (>= 2.8.2), dhcp3-common (= 3.0.6.dfsg-1ubuntu9), libc6 (>= 2.7-1), libcap1
+Suggests: avahi-autoipd, resolvconf
+Conflicts: dhcp-client (<< 3.0), samba-common (<< 3.0.0beta1-2)
+Conffiles:
+ /etc/dhcp3/dhclient-enter-hooks.d/debug f87002d243ba73fc352990172ff803a4
+ /etc/dhcp3/dhclient-exit-hooks.d/debug 2771fdb07e0377015973788dcc3ef77f
+ /etc/dhcp3/dhclient.conf 48e620b26c9410b0a2c856abe7d31d3f
+Description: DHCP client
+ This is the client from version 3 of the Internet Software
+ Consortium's implementation of DHCP. For more information visit
+ http://www.isc.org.
+ .
+ Dynamic Host Configuration Protocol (DHCP) is a protocol like BOOTP
+ (actually dhcpd includes much of the functionality of bootpd). It
+ gives client machines "leases" for IP addresses and can
+ automatically set their network configuration. If your machine
+ depends on DHCP (especially likely if it's a workstation on a large
+ network, or a laptop, or attached to a cable modem), keep this or
+ another DHCP client installed.
+ .
+ Extra documentation can be found in the package dhcp3-common.
+Original-Maintainer: Eloy A. Paris <peloy@xxxxxxxxxx>
+
+Package: xserver-xorg-video-savage
+Status: install ok installed
+Priority: optional
+Section: x11
+Installed-Size: 236
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 1:2.1.3-5
+Replaces: xserver-xorg (<< 6.8.2-35), xserver-xorg-driver-savage
+Provides: xserver-xorg-video-2
+Depends: libc6 (>= 2.6.1-1), xserver-xorg-core (>= 2:1.4)
+Conflicts: xserver-xorg-driver-savage
+Description: X.Org X server -- Savage display driver
+ This package provides the driver for the S3/VIA Savage/ProSavage/Twister family
+ of chipsets.
+ .
+ More information about X.Org can be found at:
+ <URL:http://www.X.org>
+ <URL:http://xorg.freedesktop.org>
+ <URL:http://lists.freedesktop.org/mailman/listinfo/xorg>
+ .
+ This package is built from the X.org xf86-video-savage driver module.
+Original-Maintainer: Debian X Strike Force <debian-x@xxxxxxxxxxxxxxxx>
+
+Package: xserver-xorg-video-fbdev
+Status: install ok installed
+Priority: optional
+Section: x11
+Installed-Size: 92
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 1:0.3.1-4
+Replaces: xserver-xorg (<< 6.8.2-35), xserver-xorg-driver-fbdev
+Provides: xserver-xorg-video-2
+Depends: libc6 (>= 2.6.1-1), xserver-xorg-core (>= 2:1.4)
+Conflicts: xserver-xorg-driver-fbdev
+Description: X.Org X server -- fbdev display driver
+ This package provides the driver for the Linux framebuffer device (aka
+ 'fbdev').
+ .
+ More information about X.Org can be found at:
+ <URL:http://www.X.org>
+ <URL:http://xorg.freedesktop.org>
+ <URL:http://lists.freedesktop.org/mailman/listinfo/xorg>
+ .
+ This package is built from the X.org xf86-video-fbdev driver module.
+Original-Maintainer: Debian X Strike Force <debian-x@xxxxxxxxxxxxxxxx>
+
+Package: libxfont1
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 456
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: libxfont
+Version: 1:1.3.1-2
+Depends: libc6 (>= 2.7-1), libfontenc1, libfreetype6 (>= 2.3.5), x11-common, zlib1g (>= 1:1.2.3.3.dfsg-1)
+Description: X11 font rasterisation library
+ libXfont provides various services for X servers, most notably font
+ selection and rasterisation (through external libraries).
+ .
+ More information about X.Org can be found at:
+ <URL:http://xorg.freedesktop.org>
+ <URL:http://lists.freedesktop.org/mailman/listinfo/xorg>
+Original-Maintainer: Debian X Strike Force <debian-x@xxxxxxxxxxxxxxxx>
+
+Package: libthai0
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 104
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: libthai
+Version: 0.1.9-1
+Depends: libc6 (>= 2.6-1), libdatrie0, libthai-data
+Description: Thai language support library
+ LibThai is a set of Thai language support routines aimed to ease
+ developers' tasks to incorporate Thai language support in their applications.
+ It includes important Thai-specific functions e.g. word breaking, input and
+ output methods as well as basic character and string supports.
+ .
+ This package contains the shared libraries needed to run programs that use
+ the LibThai library.
+ .
+ Homepage: http://libthai.sourceforge.net/
+Original-Maintainer: Theppitak Karoonboonyanan <thep@xxxxxxxxxxxxxx>
+
+Package: libhal-storage1
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 160
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: hal
+Version: 0.5.11~rc2-1ubuntu8.1
+Depends: libc6 (>= 2.4), libdbus-1-3 (>= 1.1.1), libhal1 (>= 0.5.8.1)
+Description: Hardware Abstraction Layer - shared library for storage devices
+ HAL provides an abstract view on hardware.
+ .
+ This abstraction layer is simply an interface that makes it possible to
+ add support for new devices and new ways of connecting devices to the
+ computer, without modifying every application that uses the device.
+ It maintains a list of devices that currently exist, and can provide
+ information about those upon request.
+ .
+ This library provides an interface for handling storage devices.
+Homepage: http://hal.freedesktop.org/
+Original-Maintainer: Utopia Maintenance Team <pkg-utopia-maintainers@xxxxxxxxxxxxxxxxxxxxxxx>
+
+Package: aspell-en
+Status: install ok installed
+Priority: optional
+Section: text
+Installed-Size: 548
+Maintainer: Ubuntu Core Developers <ubuntu-devel@xxxxxxxxxxxxxxxx>
+Architecture: all
+Version: 6.0-0-5.1
+Provides: aspell-dictionary
+Depends: aspell (>= 0.60.3-2), dictionaries-common (>= 0.49.2)
+Description: English dictionary for GNU Aspell
+ This package contains all the required files to add support for English
+ language to the GNU Aspell spell checker.
+ .
+ American, British and Canadian spellings are included.
+Original-Maintainer: Brian Nelson <pyro@xxxxxxxxxx>
+
+Package: libgstreamer-plugins-base0.10-0
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 1096
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: gst-plugins-base0.10
+Version: 0.10.18-3
+Depends: libc6 (>= 2.7-1), libglib2.0-0 (>= 2.16.0), libgstreamer0.10-0 (>= 0.10.18)
+Suggests: gnome-app-install, libvisual-0.4-plugins
+Conflicts: totem-gstreamer (<= 2.17.92-0ubuntu1)
+Description: GStreamer libraries from the "base" set
+ GStreamer is a streaming media framework, based on graphs of filters
+ which operate on media data.  Applications using this library can do
+ anything from real-time sound processing to playing videos, and just
+ about anything else media-related.  Its plugin-based architecture means
+ that new data types or processing capabilities can be added simply by
+ installing new plug-ins.
+ .
+ This package contains libraries from the "base" set, an essential
+ exemplary set of elements.
+Original-Maintainer: Maintainers of GStreamer packages <pkg-gstreamer-maintainers@xxxxxxxxxxxxxxxxxxxxxxx>
+Homepage: http://gstreamer.freedesktop.org
+
+Package: libgtk2.0-0
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 4972
+Maintainer: Ubuntu Desktop Team <ubuntu-desktop@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: gtk+2.0
+Version: 2.12.9-3ubuntu4
+Replaces: libgtk2.0-0png3
+Provides: gtk2.0-binver-2.10.0
+Depends: libatk1.0-0 (>= 1.20.0), libc6 (>= 2.4), libcairo2 (>= 1.6.0), libcomerr2 (>= 1.33-3), libcupsys2 (>= 1.3.4), libfontconfig1 (>= 2.4.0), libglib2.0-0 (>= 2.16.0), libgnutls13 (>= 2.0.4-0), libgtk2.0-common, libjpeg62, libkrb53 (>= 1.6.dfsg.2), libpango1.0-0 (>= 1.20.1), libpng12-0 (>= 1.2.13-4), libtiff4, libx11-6, libxcomposite1 (>= 1:0.3-1), libxcursor1 (>> 1.1.2), libxdamage1 (>= 1:1.1), libxext6, libxfixes3 (>= 1:4.0.1), libxi6, libxinerama1, libxrandr2 (>= 2:1.2.0), libxrender1, zlib1g (>= 1:1.2.3.3.dfsg-1)
+Recommends: hicolor-icon-theme, libgtk2.0-bin
+Suggests: librsvg2-common
+Conflicts: celestia (<< 1.2.4-4), eog2 (<< 1.0.1-4), gcin (<< 1.3.4-2), gimp1.3 (<< 1.3.7-1.1), glabels (<< 2.1.3-3), gnome-panel2 (<< 2.0.4-1), gnome-themes (<< 2.6), gtk-im-libthai (<< 0.1.4-3), gtk-qt-engine (<< 1:0.8~svn-rev36-1), gtk2-engines (<< 1:2.8.2-2), gtk2-engines-cleanice (<< 2.4.0-1.1), gtk2-engines-crux (<< 2.6), gtk2-engines-gtk-qt (<< 1:0.7-2), gtk2-engines-highcontrast (<< 2.6), gtk2-engines-industrial (<< 0.2.32-5), gtk2-engines-lighthouseblue (<< 2.6), gtk2-engines-magicchicken (<< 1.1.1-7.1), gtk2-engines-metal (<< 2.2.0-2.1), gtk2-engines-mist (<< 2.6), gtk2-engines-pixbuf (<= 2.10), gtk2-engines-qtpixmap (<< 0.28-1.2), gtk2-engines-redmond95 (<< 2.2.0-2.1), gtk2-engines-smooth (<< 0.5.6-3), gtk2-engines-thinice (<< 2.6), gtk2-engines-ubuntulooks (<= 0.9.11-1), gtk2-engines-wonderland (<< 1.0-4), gtk2-engines-xfce (<< 2.4.0-1), gtk2.0-examples (<< 2.2.0), iiimf-client-gtk (<< 12.3.91-4), iiimgcf (<= 11.4.1870-7.3), imhangul (<< 0.9.13-5), libeel2-2.18, libgdkxft0, libginspx0 (<< 20050529-1.1), libgnomeui-0 (<= 2.14.1-3), libgtk2.0-0png3, librsvg2-common (<= 2.14.4-2), libwmf-dev (<< 0.2.8.4-5), libwmf0.2-7 (<< 0.2.8.4-5), libwxgtk2.6-0 (<< 2.6.3.2.2-1), metacity (<< 1:2.20.0-1), metatheme (<< 0.9.7-3), openoffice.org-core (<< 2.2.1-8), scim-bridge (<= 0.2.4-1), scim-bridge-client-gtk (<< 0.4.10-1.1), scim-gtk2-immodule (<< 1.4.4-8), swf-player (<< 0.3.6-2.3), tamil-gtk2im (<< 2.2-4.4), uim-gtk2.0 (<< 1:1.4.1-3), xfwm4 (<< 4.4.1-3)
+Conffiles:
+ /etc/gtk-2.0/im-multipress.conf eee8ffddb9df611c55d2599ab1aed4fd
+Description: The GTK+ graphical user interface library
+ The GTK+ is a multi-platform toolkit for creating graphical user
+ interfaces. Offering a complete set of widgets, the GTK+ is suitable
+ for projects ranging from small one-off tools to complete application
+ suites.
+ .
+ This package contains the shared libraries.
+Original-Maintainer: Sebastien Bacher <seb128@xxxxxxxxxx>
+
+Package: libslp1
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 156
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: openslp-dfsg
+Version: 1.2.1-7.1
+Depends: debconf | debconf-2.0, libc6 (>= 2.7-1), net-tools
+Suggests: openslp-doc (= 1.2.1-7.1), slpd (= 1.2.1-7.1)
+Description: OpenSLP libraries
+ Service Location Protocol is an IETF standard protocol that is used to
+ discover/advertise services on the network. You can use SLP for anything
+ from locating a suitable printer on your floor to discovering what LDAP
+ directories are available in your organization.  This package provides
+ the OpenSLP run-time library package that is linked to SLP aware
+ applications. This library implements RFC 2614 - An API for Service
+ Location. Unless there is a SLP DA in the network, you must install the
+ slpd package to be able to advertise the services.
+Original-Maintainer: Ganesan Rajagopal <rganesan@xxxxxxxxxx>
+
+Package: xserver-xorg-input-evdev
+Status: install ok installed
+Priority: optional
+Section: x11
+Installed-Size: 120
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 1:1.2.0-1ubuntu2
+Replaces: xserver-xorg (<< 6.8.2-35)
+Provides: xserver-xorg-input-2
+Depends: libc6 (>= 2.7-1), xserver-xorg-core (>= 2:1.4)
+Description: X.Org X server -- evdev input driver
+ This package provides the driver for input devices using evdev, the Linux
+ kernel's event delivery mechanism.  This driver allows for multiple keyboards
+ and mice to be treated as separate input devices, and matched on physical
+ attributes such as which USB port they're connected to.
+ .
+ Note that this driver is different from Protocol "evdev" in the keyboard and
+ mouse drivers, as shipped with Ubuntu 4.10 and 5.04, and Debian 3.1.
+ .
+ More information about X.Org can be found at:
+ <URL:http://www.X.org>
+ <URL:http://xorg.freedesktop.org>
+ <URL:http://lists.freedesktop.org/mailman/listinfo/xorg>
+ .
+ This package is built from the X.org xf86-input-evdev driver module.
+Original-Maintainer: Debian X Strike Force <debian-x@xxxxxxxxxxxxxxxx>
+
+Package: xserver-xorg-video-glint
+Status: install ok installed
+Priority: optional
+Section: x11
+Installed-Size: 364
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 1:1.1.1-8
+Replaces: xserver-xorg (<< 6.8.2-35), xserver-xorg-driver-glint
+Provides: xserver-xorg-video-2
+Depends: libc6 (>= 2.6.1-1), xserver-xorg-core (>= 2:1.4)
+Conflicts: xserver-xorg-driver-glint
+Description: X.Org X server -- Glint display driver
+ This package provides the driver for the Texas Instruments/3DLabs Glint and
+ Permedia series of video cards.
+ .
+ More information about X.Org can be found at:
+ <URL:http://www.X.org>
+ <URL:http://xorg.freedesktop.org>
+ <URL:http://lists.freedesktop.org/mailman/listinfo/xorg>
+ .
+ This package is built from the X.org xf86-video-glint driver module.
+Original-Maintainer: Debian X Strike Force <debian-x@xxxxxxxxxxxxxxxx>
+
+Package: libsnmp-base
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 2648
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: all
+Source: net-snmp
+Version: 5.4.1~dfsg-4ubuntu4
+Replaces: libsnmp, libsnmp-dev (<< 5.4~dfsg), libsnmp9-dev (<< 5.4~dfsg), quagga, snmp (<= 3.6.2-3), zebra, zebra-pj
+Provides: libsnmp
+Conflicts: libsnmp, libsnmp-dev (<< 5.4~dfsg)
+Description: SNMP (Simple Network Management Protocol) MIBs and documentation
+ The Simple Network Management Protocol (SNMP) provides a framework
+ for the exchange of management information between agents (servers)
+ and clients.
+ .
+ This package includes documentation and MIBs (Management Information
+ Bases) for the SNMP libraries, agents and applications. MIBs contain
+ a formal description of the data that can be managed using SNMP.
+ and applications.
+Original-Maintainer: Net-SNMP Packaging Team <pkg-net-snmp-devel@xxxxxxxxxxxxxxxxxxxxxxx>
+
+Package: linux-restricted-modules-common
+Status: install ok installed
+Priority: optional
+Section: restricted/misc
+Installed-Size: 100
+Maintainer: Ubuntu Kernel Team <kernel-team@xxxxxxxxxxxxxxxx>
+Architecture: all
+Source: linux-restricted-modules-2.6.24
+Version: 2.6.24.13-19.44
+Depends: binutils-static
+Conffiles:
+ /etc/default/linux-restricted-modules-common 0af6aa90e7c74975c78418489545cfce
+ /etc/modprobe.d/lrm-video 03262adb8160b535eac8505cbb9824af
+ /etc/init.d/linux-restricted-modules-common ddef6c5e83f3204939cf1759cfbb19eb
+Description: Non-free Linux 2.6.24 modules helper script
+ This package provides only a set of helper scripts to handle
+ linux-restricted-modules.
+
+Package: landscape-client
+Status: install ok installed
+Priority: optional
+Section: admin
+Installed-Size: 32
+Maintainer: Matt Zimmerman <mdz@xxxxxxxxxx>
+Architecture: all
+Version: 0.1
+Description: Placeholder for the Landscape client
+ This package is currently empty, but will be updated to contain a client for
+ the Landscape system.  Landscape is a web-based tool for managing Ubuntu
+ systems.
+
+Package: cupsys-bsd
+Status: install ok installed
+Priority: extra
+Section: net
+Installed-Size: 168
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: cupsys
+Version: 1.3.7-1ubuntu3
+Replaces: cupsys (<= 1.1.15-2), lpr, manpages-fr (<< 0.9.5-1)
+Provides: lpr
+Depends: cupsys-client (= 1.3.7-1ubuntu3), cupsys-common, debconf | debconf-2.0, libc6 (>= 2.4), libcupsys2 (>= 1.3.4), update-inetd
+Recommends: cupsys
+Conflicts: lpr, lprng, manpages-fr (<< 0.9.5-1)
+Description: Common UNIX Printing System(tm) - BSD commands
+ The Common UNIX Printing System (or CUPS(tm)) is a printing system and
+ general replacement for lpr, lpd and the like.  It supports the
+ Internet Printing Protocol (IPP), and has its own filtering driver
+ model for handling various document types.
+ .
+ This package provides the BSD commands for interacting with CUPS.  It
+ is provided separately to allow CUPS to coexist with other printing
+ systems (to a small degree).
+ .
+ The terms "Common UNIX Printing System" and "CUPS" are trademarks of
+ Easy Software Products (www.easysw.com), and refer to the original
+ source packages from which these packages are made.
+Original-Maintainer: Debian CUPS Maintainers <pkg-cups-devel@xxxxxxxxxxxxxxxxxxxxxxx>
+
+Package: libthai-data
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 348
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: all
+Source: libthai
+Version: 0.1.9-1
+Description: Data files for Thai language support library
+ LibThai is a set of Thai language support routines aimed to ease
+ developers' tasks to incorporate Thai language support in their applications.
+ It includes important Thai-specific functions e.g. word breaking, input and
+ output methods as well as basic character and string supports.
+ .
+ This package contains the data needed by LibThai library.
+ .
+ Homepage: http://libthai.sourceforge.net/
+Original-Maintainer: Theppitak Karoonboonyanan <thep@xxxxxxxxxxxxxx>
+
+Package: libxpm4
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 124
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: libxpm
+Version: 1:3.5.7-1
+Depends: libc6 (>= 2.6.1-1), libx11-6, x11-common
+Description: X11 pixmap library
+ libXpm provides support and common operation for the XPM pixmap format, which
+ is commonly used in legacy X applications.  XPM is an extension of the
+ monochrome XBM bitmap specificied in the X protocol.
+ .
+ More information about X.Org can be found at:
+ <URL:http://xorg.freedesktop.org>
+ <URL:http://lists.freedesktop.org/mailman/listinfo/xorg>
+Original-Maintainer: Debian X Strike Force <debian-x@xxxxxxxxxxxxxxxx>
+
+Package: tar
+Essential: yes
+Status: install ok installed
+Priority: required
+Section: utils
+Installed-Size: 2104
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 1.19-3
+Replaces: cpio
+Pre-Depends: libc6 (>= 2.7-1)
+Suggests: bzip2, ncompress
+Conflicts: cpio (<= 2.4.2-38)
+Conffiles:
+ /etc/rmt 3c58b7cd13da1085eff0acc6a00f43c7
+Description: GNU version of the tar archiving utility
+ Tar is a program for packaging a set of files as a single archive in tar
+ format.  The function it performs is conceptually similar to cpio, and to
+ things like PKZIP in the DOS world.  It is heavily used by the Debian package
+ management system, and is useful for performing system backups and exchanging
+ sets of files with others.
+Original-Maintainer: Bdale Garbee <bdale@xxxxxxx>
+
+Package: file
+Status: install ok installed
+Priority: standard
+Section: utils
+Installed-Size: 128
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 4.21-3ubuntu1
+Depends: libc6 (>= 2.4), libmagic1 (= 4.21-3ubuntu1)
+Conffiles:
+ /etc/magic 272913026300e7ae9b5e2d51f138e674
+ /etc/magic.mime 272913026300e7ae9b5e2d51f138e674
+Description: Determines file type using "magic" numbers
+ File tests each argument in an attempt to classify it. There are three sets of
+ tests, performed in this order: filesystem tests, magic number tests, and
+ language tests. The first test that succeeds causes the file type to be
+ printed.
+ .
+ Starting with version 4, the file command is not much more than a wrapper
+ around the "magic" library.
+ .
+  Homepage: <http://www.darwinsys.com/file/>
+Original-Maintainer: Daniel Baumann <daniel@xxxxxxxxxx>
+
+Package: libgsf-1-114
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 300
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: libgsf
+Version: 1.14.7-2ubuntu1
+Depends: libbz2-1.0, libc6 (>= 2.7-1), libglib2.0-0 (>= 2.15.4), libgsf-1-common (>= 1.14.7-2ubuntu1), libxml2 (>= 2.6.27), zlib1g (>= 1:1.2.3.3.dfsg-1)
+Conflicts: gnumeric (<< 1.4.4)
+Description: Structured File Library - runtime version
+ The GNOME Structured File Library library aims to provide an efficient
+ extensible I/O abstraction for dealing with different structured file
+ formats.
+ .
+ This is the basic runtime version of libgsf. It does not provide
+ GNOME-specific extensions.
+Original-Maintainer: J.H.M. Dassen (Ray) <jdassen@xxxxxxxxxx>
+
+Package: gdebi-core
+Status: install ok installed
+Priority: optional
+Section: admin
+Installed-Size: 500
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: all
+Source: gdebi
+Version: 0.3.8
+Replaces: gdebi (<< 0.2ubuntu3)
+Depends: python, python-apt (>= 0.7.0), python-central (>= 0.6.1)
+Conflicts: gdebi (<< 0.2ubuntu3)
+Description: Simple tool to install deb files
+ gdebi lets you install local deb packages resolving and installing
+ its dependencies. apt does the same, but only for remote (http, ftp)
+ located packages.
+ .
+ This package contains the libraries and command-line utility.
+Original-Maintainer: Gustavo Franco <stratus@xxxxxxxxxx>
+Python-Version: current
+
+Package: gcc-4.2
+Status: install ok installed
+Priority: optional
+Section: devel
+Installed-Size: 1304
+Maintainer: Ubuntu Core developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 4.2.3-2ubuntu7
+Replaces: gcc-4.2-base (<< 4.2.1-5)
+Provides: c-compiler
+Depends: binutils (>= 2.17cvs20070426), cpp-4.2 (= 4.2.3-2ubuntu7), gcc-4.2-base (= 4.2.3-2ubuntu7), libc6 (>= 2.7-1), libgcc1 (>= 1:4.2.3-2ubuntu7), libgomp1 (>= 4.2.3-2ubuntu7)
+Recommends: libc6-dev (>= 2.5)
+Suggests: gcc-4.2-doc (>= 4.2.3-1), gcc-4.2-locales (>= 4.2.3-1), gcc-4.2-multilib, libgcc1-dbg, libgomp1-dbg, libmudflap0-4.2-dbg, libmudflap0-4.2-dev (>= 4.2.3-2ubuntu7)
+Description: The GNU C compiler
+ This is the GNU C compiler, a fairly portable optimizing compiler for C.
+Original-Maintainer: Debian GCC Maintainers <debian-gcc@xxxxxxxxxxxxxxxx>
+
+Package: python-gdbm
+Status: install ok installed
+Priority: optional
+Section: python
+Installed-Size: 100
+Maintainer: Ubuntu Core developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: python-stdlib-extensions
+Version: 2.5.2-0ubuntu2
+Replaces: python2.3-gdbm, python2.4-gdbm
+Provides: python2.4-gdbm, python2.5-gdbm
+Depends: libc6 (>= 2.7-1), libgdbm3, python (>= 2.4), python (<< 2.6)
+Suggests: python-gdbm-dbg
+Conflicts: python2.3-gdbm, python2.4-gdbm
+Description: GNU dbm database support for Python
+ GNU dbm database module for Python. Install this if you want to
+ create or read GNU dbm database files with Python.
+Original-Maintainer: Matthias Klose <doko@xxxxxxxxxx>
+Python-Version: 2.4, 2.5
+
+Package: liburi-perl
+Status: install ok installed
+Priority: optional
+Section: perl
+Installed-Size: 384
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: all
+Version: 1.35.dfsg.1-1
+Depends: perl, perl (>= 5.6.0-16), libmime-base64-perl, libnet-perl, data-dumper
+Suggests: libwww-perl (>= 5.41)
+Conflicts: libwww-perl (<< 5.41)
+Description: Manipulates and accesses URI strings
+ From the README:
+ .
+ This package contains the URI.pm module with friends.  The module
+ implements the URI class.  Objects of this class represent Uniform
+ Resource Identifier (URI) references as specified in RFC 2396.
+ .
+ URI objects can be used to access and manipulate the various
+ components that make up these strings.  There are also methods to
+ combine URIs in various ways.
+ .
+ The URI class replace the URI::URL class that used to be distributed
+ with libwww-perl.  This package contains an emulation of the old
+ URI::URL interface.  The emulated URI::URL implement both the old and
+ the new interface.
+Original-Maintainer: Stefan Hornburg (Racke) <racke@xxxxxxxxxx>
+
+Package: libnl1
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 328
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: libnl
+Version: 1.1-1
+Replaces: libnl1-pre6, libnl1-pre8
+Depends: libc6 (>= 2.7-1)
+Conflicts: libnl1-pre6, libnl1-pre8
+Description: Library for dealing with netlink sockets
+ This is a library for applications dealing with netlink sockets.
+ The library provides an interface for raw netlink messaging and various
+ netlink family specific interfaces.
+Original-Maintainer: Michael Biebl <biebl@xxxxxxxxxx>
+Homepage: http://people.suug.ch/~tgr/libnl/
+
+Package: foo2zjs
+Status: install ok installed
+Priority: optional
+Section: text
+Installed-Size: 5436
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 20071205-0ubuntu3
+Replaces: foo2zjs-ppds
+Provides: foo2zjs-ppds
+Depends: libc6 (>= 2.7-1), mscompress
+Recommends: foomatic-db-engine
+Suggests: psutils
+Conflicts: foo2zjs-ppds
+Conffiles:
+ /etc/udev/rules.d/85-hplj10xx.rules f1618908b00ecbad19e693b0a63303ce
+Description: Support for printing to ZjStream-based printers
+ foo2zjs is an open source printer driver for printers that use the
+ Zenographics ZjStream wire protocol for their print data, such as the
+ Minolta magicolor 2200/2300/2430 DL, Minolta Color PageWorks/Pro L and
+ HP LaserJet 1000/1005/1018/1020/1022. These printers are often
+ erroneously referred to as "winprinters" or "GDI printers".
+ .
+ The foomatic-db-engine package is recommended to simplify configuring
+ this printer driver.  The psutils package is needed to enable n-up
+ printing support.
+ .
+ Home Page: http://foo2zjs.rkkda.com/
+Original-Maintainer: Steffen Joeris <steffen.joeris@xxxxxxxxxxxxx>
+
+Package: librpc-xml-perl
+Status: install ok installed
+Priority: optional
+Section: perl
+Installed-Size: 756
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: all
+Version: 0.59-2
+Depends: libxml-parser-perl, libwww-perl, perl (>= 5.6.0-16)
+Suggests: libapache-mod-perl
+Description: Perl module implementation of XML-RPC
+ The RPC::XML package is an implementation of XML-RPC. The module provides
+ classes for sample client and server implementations, a server designed as an
+ Apache location-handler, and a suite of data-manipulation classes that are
+ used by them.
+Original-Maintainer: Debian Perl Group <pkg-perl-maintainers@xxxxxxxxxxxxxxxxxxxxxxx>
+
+Package: libfribidi0
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 160
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: fribidi
+Version: 0.10.9-1
+Depends: libc6 (>= 2.7-1)
+Description: Free Implementation of the Unicode BiDi algorithm
+ FriBiDi is a BiDi algorithm implementation for Hebrew and/or Arabic
+ languages.
+Original-Maintainer: Debian Hebrew Packaging Team <debian-hebrew-package@xxxxxxxxxxxxxxxxxxxxxxx>
+Homepage: http://www.fribidi.org/
+
+Package: freeglut3
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 272
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: freeglut
+Version: 2.4.0-6
+Replaces: glutg3 (<= 3.7-14), libglut3 (<= 3.7-23)
+Provides: glutg3, libglut, libglut3
+Depends: libc6 (>= 2.7-1), libgl1-mesa-glx | libgl1, libglu1-mesa | libglu1, libx11-6, libxext6
+Conflicts: glutg3 (<= 3.7-14), libglut3 (<= 3.7-23)
+Description: OpenGL Utility Toolkit
+ GLUT is a window system independent toolkit for writing OpenGL programs,
+ implementing a simple windowing API, which makes learning about and
+ exploring OpenGL programming very easy.
+ .
+ GLUT is designed for constructing small to medium sized OpenGL programs,
+ however it is not a full-featured toolkit, so large applications requiring
+ sophisticated user interfaces are better off using native window system
+ toolkits like GTK or Motif.
+Original-Maintainer: Jamie Wilkinson <jaq@xxxxxxxxxx>
+
+Package: zlib1g
+Status: install ok installed
+Priority: required
+Section: libs
+Installed-Size: 160
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: zlib
+Version: 1:1.2.3.3.dfsg-7ubuntu1
+Provides: libz1
+Depends: libc6 (>= 2.6.1-1)
+Conflicts: zlib1 (<= 1:1.0.4-7)
+Description: compression library - runtime
+ zlib is a library implementing the deflate compression method found
+ in gzip and PKZIP.  This package includes the shared library.
+Original-Maintainer: Mark Brown <broonie@xxxxxxxxxx>
+
+Package: libopenexr2ldbl
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 916
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: openexr
+Version: 1.2.2-4.4ubuntu1
+Replaces: libopenexr2, libopenexr2c2, libopenexr2c2a
+Depends: libc6 (>= 2.6.1-1), libgcc1 (>= 1:4.2.1), libstdc++6 (>= 4.2.1), zlib1g (>= 1:1.2.3.3.dfsg-1)
+Conflicts: libopenexr0, libopenexr2, libopenexr2c2, libopenexr2c2a
+Description: runtime files for the OpenEXR image library
+ OpenEXR is a high dynamic-range (HDR) image file format developed by
+ Industrial Light & Magic for use in computer imaging applications.
+ .
+ OpenEXR's features include:
+    * Higher dynamic range and colour precision than existing 8- and
+      10-bit image file formats.
+    * Support for the "half" 16-bit floating-point pixel format.
+    * Multiple lossless image compression algorithms. Some of the
+      included codecs can achieve 2:1 lossless compression ratios on
+      images with film grain.
+    * Extensibility. New compression codecs and image types can easily
+      be added by extending the C++ classes included in the OpenEXR
+      software distribution. New image attributes (strings, vectors,
+      integers, etc.) can be added to OpenEXR image headers without
+      affecting backward compatibility with existing OpenEXR
+      applications.
+ This package contains the following shared libraries:
+    * IlmImf - a library that reads and writes OpenEXR images.
+    * Imath - a math library with support for matrices, 2D and
+      3D transformations, solvers for linear/quadratic/cubic
+      equations, and more.
+ .
+ Homepage: http://www.openexr.com/
+Original-Maintainer: Andrew Lau <netsnipe@xxxxxxxxxxxxxxxxxxxxx>
+
+Package: xserver-xorg
+Status: install ok installed
+Priority: optional
+Section: x11
+Installed-Size: 608
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: all
+Source: xorg
+Version: 1:7.3+10ubuntu10.2
+Replaces: xserver-common
+Depends: debconf (>= 0.5) | debconf-2.0, mdetect, x11-xkb-utils, xkb-data | xkb-data-legacy, xserver-xorg-core (>= 2:1.4-3), xserver-xorg-input-all | xserver-xorg-input-2, xserver-xorg-video-all | xserver-xorg-video-2
+Pre-Depends: x11-common (>= 1:7.3+3)
+Recommends: displayconfig-gtk, dmidecode, laptop-detect, libgl1-mesa-dri, udev
+Conflicts: xserver-common, xserver-xfree86 (<< 6.8.2.dfsg.1-1)
+Description: the X.Org X server
+ This package depends on the full suite of the server and drivers for the
+ X.Org X server, as well as providing a configuration infrastructure to manage
+ xorg.conf.  It does not provide the actual server itself, but removing it
+ is strongly discouraged.
+Original-Maintainer: Debian X Strike Force <debian-x@xxxxxxxxxxxxxxxx>
+
+Package: bogofilter
+Status: install ok installed
+Priority: optional
+Section: mail
+Installed-Size: 20
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 1.1.5-2ubuntu5
+Depends: bogofilter-bdb
+Description: a fast Bayesian spam filter (dummy package)
+ This package implements a fast Bayesian spam filter along the lines suggested
+ by Paul Graham in his article "A Plan For Spam".
+ .
+ This version substantially improves on Paul's proposal by doing smarter
+ lexical analysis.  In particular, hostnames and IP addresses are retained
+ as recognition features rather than broken up. Various kinds of MTA
+ cruft such as dates and message-IDs are discarded so as not to bloat
+ the word lists.
+Original-Maintainer: Clint Adams <schizo@xxxxxxxxxx>
+
+Package: libgd2-noxpm
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 752
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: libgd2
+Version: 2.0.35.dfsg-3ubuntu2
+Provides: libgd2
+Depends: libc6 (>= 2.7-1), libfreetype6 (>= 2.3.5), libjpeg62, libpng12-0 (>= 1.2.13-4), zlib1g (>= 1:1.2.3.3.dfsg-1)
+Suggests: libgd-tools
+Conflicts: libgd2, libgd2-xpm
+Description: GD Graphics Library version 2 (without XPM support)
+ GD is a graphics library. It allows your code to quickly draw images
+ complete with lines, arcs, text, multiple colours, cut and paste from
+ other images, flood fills, and write out the result as a PNG file.
+ This is particularly useful in World Wide Web applications, where PNG is
+ one of the formats accepted for inline images by most browsers.
+ .
+ This is the runtime package of the library, built without XPM (X pixmap)
+ or fontconfig support.
+ .
+  Homepage: http://www.libgd.org/
+Original-Maintainer: GD team <pkg-gd-devel@xxxxxxxxxxxxxxxxxxxxxxx>
+
+Package: hal-cups-utils
+Status: install ok installed
+Priority: optional
+Section: admin
+Installed-Size: 112
+Maintainer: Jani Monoses <jani@xxxxxxxxxx>
+Architecture: i386
+Version: 0.6.13+svn86-0ubuntu4
+Depends: cupsys, hal, libc6 (>= 2.4), libcupsys2 (>= 1.3.4), libdbus-1-3 (>= 1.1.1), libhal1 (>= 0.5.8.1), python, python-cups, python-dbus, python-gobject, system-config-printer-common
+Recommends: hplip, usbutils
+Description: CUPS integration with HAL
+ This package provides a CUPS backend for browsing local printers
+ using HAL and a utility based on lpadmin for adding, configuring and
+ removing printers using HAL UDIs.
+
+Package: libxrandr2
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 80
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: libxrandr
+Version: 2:1.2.2-1
+Depends: libc6 (>= 2.6.1-1), libx11-6, libxext6, libxrender1, x11-common
+Description: X11 RandR extension library
+ libXrandr provides an X Window System client interface to the RandR
+ extension to the X protocol.
+ .
+ The RandR extension allows for run-time configuration of display attributes
+ such as resolution, rotation, and reflection.
+ .
+ More information about X.Org can be found at:
+ <URL:http://xorg.freedesktop.org>
+ <URL:http://lists.freedesktop.org/mailman/listinfo/xorg>
+ .
+ This module can be found at
+ git://anongit.freedesktop.org/git/xorg/lib/libXrandr
+Original-Maintainer: Debian X Strike Force <debian-x@xxxxxxxxxxxxxxxx>
+
+Package: os-prober
+Status: install ok installed
+Priority: extra
+Section: utils
+Installed-Size: 160
+Maintainer: Ubuntu Installer Team <ubuntu-installer@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 1.23ubuntu1
+Description: utility to detect other OSes on a set of drives
+ This package detects other OSes available on a system and outputs the
+ results in a generic machine-readable format.
+Original-Maintainer: Debian Install System Team <debian-boot@xxxxxxxxxxxxxxxx>
+
+Package: libglu1-mesa
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 612
+Maintainer: Ubuntu Core Developers <ubuntu-devel@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: mesa
+Version: 7.0.3~rc2-1ubuntu3
+Replaces: libglu1
+Provides: libglu1
+Depends: libc6 (>= 2.1.3), libgcc1 (>= 1:4.1.1-21), libgl1-mesa-glx | libgl1, libstdc++6 (>= 4.1.1-21)
+Conflicts: libglu1, mesag3 (<< 5.0.0-1), xlibmesa3
+Description: The OpenGL utility library (GLU)
+ GLU offers simple interfaces for building mipmaps; checking for the
+ presence of extensions in the OpenGL (or other libraries which follow
+ the same conventions for advertising extensions); drawing
+ piecewise-linear curves, NURBS, quadrics and other primitives
+ (including, but not limited to, teapots); tesselating surfaces; setting
+ up projection matrices and unprojecting screen coordinates to world
+ coordinates.
+ .
+ On Linux, this library is also known as libGLU or libGLU.so.1.
+ .
+ This package provides the SGI implementation of GLU shipped with the
+ Mesa package (ergo the "-mesa" suffix).
+Homepage: http://mesa3d.sourceforge.net/
+Original-Maintainer: Debian X Strike Force <debian-x@xxxxxxxxxxxxxxxx>
+
+Package: gsfonts
+Status: install ok installed
+Priority: optional
+Section: text
+Installed-Size: 4792
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: all
+Version: 1:8.11+urwcyr1.0.7~pre43-1
+Depends: defoma
+Conflicts: gs (<< 5.50-5), gs-aladdin (<< 6.50-4), gsfonts-x11 (<< 0.13)
+Conffiles:
+ /etc/defoma/hints/gsfonts.hints 593bec3fae2b36f13707f3f84f8f21e6
+Description: Fonts for the Ghostscript interpreter(s)
+ These are free look-alike fonts of the Adobe PostScript fonts.
+ Recommended for all flavors of Ghostscript (gs-gpl, gs-afpl and gs-esp).
+Original-Maintainer: Masayuki Hatta (mhatta) <mhatta@xxxxxxxxxx>
+
+Package: adduser
+Status: install ok installed
+Priority: important
+Section: admin
+Installed-Size: 912
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: all
+Version: 3.105ubuntu1
+Replaces: manpages-pl (<= 20051117-1), manpages-it (<< 0.3.4-2)
+Depends: perl-base (>= 5.6.0), passwd (>= 1:4.0.12), debconf | debconf-2.0
+Suggests: liblocale-gettext-perl, perl-modules
+Conffiles:
+ /etc/deluser.conf 527e6a57d0bc9f7c1b1aca2071f3da00
+Description: add and remove users and groups
+ This package includes the 'adduser' and 'deluser' commands for creating
+ and removing users.
+ .
+  - 'adduser' creates new users and groups and adds existing users to
+    existing groups;
+  - 'deluser' removes users and groups and removes users from a given
+    group.
+ .
+ Adding users with 'adduser' is much easier than adding them manually.
+ Adduser will choose appropriate UID and GID values, create a home
+ directory, copy skeletal user configuration, and automate setting
+ initial values for the user's password, real name and so on.
+ .
+ Deluser can back up and remove users' home directories
+ and mail spool or all the files they own on the system.
+ .
+ A custom script can be executed after each of the commands.
+ .
+  Homepage: http://alioth.debian.org/projects/adduser/
+  Development mailing list:
+    http://lists.alioth.debian.org/mailman/listinfo/adduser-devel/
+Original-Maintainer: Debian Adduser Developers <adduser-devel@xxxxxxxxxxxxxxxxxxxxxxx>
+
+Package: libxcb1
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 156
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: libxcb
+Version: 1.1-1ubuntu1
+Depends: libc6 (>= 2.7-1), libxau6, libxdmcp6
+Description: X C Binding
+ This package contains the library files needed to run software using libxcb,
+ the X C Binding.
+ .
+ The XCB library provides an interface to the X Window System protocol,
+ designed to replace the Xlib interface.  XCB provides several advantages over
+ Xlib:
+ .
+  * Size: small library and lower memory footprint
+  * Latency hiding: batch several requests and wait for the replies later
+  * Direct protocol access: one-to-one mapping between interface and protocol
+  * Thread support: access XCB from multiple threads, with no explicit locking
+  * Easy creation of new extensions: automatically generates interface from
+    machine-parsable protocol descriptions
+Homepage: http://xcb.freedesktop.org
+Original-Maintainer: XCB Developers <xcb@xxxxxxxxxxxxxxxxxxxxx>
+
+Package: python-support
+Status: install ok installed
+Priority: standard
+Section: python
+Installed-Size: 216
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: all
+Version: 0.7.5ubuntu1
+Depends: python (>= 2.3)
+Conflicts: debhelper (<< 5.0.38)
+Description: automated rebuilding support for python modules
+ This package contains the 'update-python-modules' script, which takes
+ care of byte-compilation of python-only modules.
+ .
+ Private modules are automatically rebuilt upon major python upgrades,
+ avoiding the need for strong dependencies.
+ .
+ Public modules are automatically made available for all installed python
+ versions.
+Original-Maintainer: Josselin Mouette <joss@xxxxxxxxxx>
+
+Package: xserver-xorg-video-all
+Status: install ok installed
+Priority: optional
+Section: x11
+Installed-Size: 24
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: xorg
+Version: 1:7.3+10ubuntu10.2
+Replaces: xserver-xorg-driver-all
+Depends: x11-common, xserver-xorg-video-apm, xserver-xorg-video-ark, xserver-xorg-video-ati, xserver-xorg-video-chips, xserver-xorg-video-cirrus, xserver-xorg-video-cyrix, xserver-xorg-video-dummy, xserver-xorg-video-fbdev, xserver-xorg-video-geode, xserver-xorg-video-glint, xserver-xorg-video-i128, xserver-xorg-video-i740, xserver-xorg-video-i810, xserver-xorg-video-imstt, xserver-xorg-video-intel, xserver-xorg-video-mga, xserver-xorg-video-neomagic, xserver-xorg-video-newport, xserver-xorg-video-nsc, xserver-xorg-video-nv, xserver-xorg-video-openchrome, xserver-xorg-video-psb, xserver-xorg-video-rendition, xserver-xorg-video-s3, xserver-xorg-video-s3virge, xserver-xorg-video-savage, xserver-xorg-video-siliconmotion, xserver-xorg-video-sis, xserver-xorg-video-sisusb, xserver-xorg-video-tdfx, xserver-xorg-video-tga, xserver-xorg-video-trident, xserver-xorg-video-tseng, xserver-xorg-video-v4l, xserver-xorg-video-vesa, xserver-xorg-video-vga, xserver-xorg-video-via, xserver-xorg-video-vmware, xserver-xorg-video-voodoo
+Description: the X.Org X server -- output driver metapackage
+ This package depends on the full suite of output drivers for the X.Org X server
+ (Xorg).  It does not provide any drivers itself, and may be removed if you wish
+ to only have certain drivers installed.
+Original-Maintainer: Debian X Strike Force <debian-x@xxxxxxxxxxxxxxxx>
+
+Package: locales
+Status: install ok installed
+Priority: important
+Section: base
+Installed-Size: 8652
+Maintainer: Martin Pitt <martin.pitt@xxxxxxxxxx>
+Architecture: all
+Source: langpack-locales
+Version: 2.7.9-4
+Replaces: base-config, belocs-locale-data, libc6 (<< 2.3.6-0ubuntu6), libc6.1 (<< 2.3.6-0ubuntu6)
+Depends: belocs-locales-bin (>= 2.4-2.2ubuntu2), tzdata
+Conflicts: base-config, belocs-locale-data
+Conffiles:
+ /etc/locale.alias 6fc3625723b82f5898c73ff612b583fb
+ /etc/belocs/iso-639.def d0f1ef54823c41e7549f7e48e49908e8
+Description: common files for locale support
+ This package provides support for localized environments (locales).
+ It installs character and transliteration maps, provides the POSIX
+ locale definition and provides common scripts for language pack
+ handling.
+ .
+ The actual locale definitions are not part of this package, these are
+ shipped in the language packs and are installed and removed
+ automatically.
+
+Package: update-manager-core
+Status: install ok installed
+Priority: optional
+Section: admin
+Installed-Size: 2812
+Maintainer: Michael Vogt <michael.vogt@xxxxxxxxxx>
+Architecture: i386
+Source: update-manager
+Version: 1:0.87.27
+Replaces: update-manager (<< 0.56)
+Depends: lsb-release, python (>= 2.4), python (<< 2.6), python-apt (>= 0.7.4ubuntu5), python-central (>= 0.6.5), python-gnupginterface, python2.5
+Conflicts: update-manager (<< 0.56)
+Conffiles:
+ /etc/update-manager/release-upgrades d98c45ca4e983aaab03e4ff32cf79e88
+Description: manage release upgrades
+ This is the core of update-manager and the release upgrader
+Python-Version: 2.4, 2.5
+
+Package: python2.5
+Status: install ok installed
+Priority: optional
+Section: python
+Installed-Size: 10188
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 2.5.2-2ubuntu4
+Replaces: idle-python2.5 (<< 2.4.3+2.5b2-2), python-tk (<< 2.4.3-2), python2.5-dev (<< 2.5.1), python2.5-minimal (<< 2.5)
+Provides: python2.5-celementtree, python2.5-cjkcodecs, python2.5-ctypes, python2.5-elementtree, python2.5-wsgiref
+Depends: libbz2-1.0, libc6 (>= 2.4), libdb4.6, libncursesw5 (>= 5.6+20071006-3), libreadline5 (>= 5.2), libsqlite3-0 (>= 3.4.2), libssl0.9.8 (>= 0.9.8f-1), mime-support, python2.5-minimal (= 2.5.2-2ubuntu4)
+Suggests: python-profiler, python2.5-doc
+Conflicts: idle-python2.5 (<< 2.4.3+2.5b2-2), python-central (<< 0.5.9), python-tk (<< 2.4.3-2)
+Description: An interactive high-level object-oriented language (version 2.5)
+ Version 2.5 of the high-level, interactive object oriented language,
+ includes an extensive class library with lots of goodies for
+ network programming, system administration, sounds and graphics.
+Original-Maintainer: Matthias Klose <doko@xxxxxxxxxx>
+Python-Version: 2.5
+
+Package: manpages
+Status: install ok installed
+Priority: important
+Section: doc
+Installed-Size: 908
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: all
+Version: 2.77-1
+Replaces: rsh-server (<< 0.10-7)
+Suggests: man-browser
+Description: Manual pages about using a GNU/Linux system
+ This package contains GNU/Linux manual pages for these sections:
+  4 = Devices (e.g. hd, sd).
+  5 = File formats and protocols, syntaxes of several system
+      files (e.g. wtmp, /etc/passwd, nfs).
+  7 = Conventions and standards, macro packages, etc.
+      (e.g. nroff, ascii).
+ .
+ Sections 1, 6 and 8 are provided by the respective applications. This
+ package only includes the intro man page describing the section.
+ .
+ The man pages describe syntaxes of several system files.
+Original-Maintainer: Martin Schulze <joey@xxxxxxxxxx>
+
+Package: ed
+Status: install ok installed
+Priority: important
+Section: editors
+Installed-Size: 140
+Maintainer: Ubuntu MOTU Developers <ubuntu-motu@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 0.7-1ubuntu1
+Depends: libc6 (>= 2.7-1)
+Description: The classic unix line editor
+ ed is a line-oriented text editor.  It is used to
+ create, display, modify and otherwise manipulate text
+ files.
+ .
+ red is a restricted ed: it can only edit files in the
+ current directory and cannot execute shell commands.
+Homepage: http://www.gnu.org/software/ed/
+Original-Maintainer: James Troup <james@xxxxxxxxxx>
+
+Package: binutils-static
+Status: install ok installed
+Priority: optional
+Section: devel
+Installed-Size: 1352
+Maintainer: Ubuntu Core developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: binutils
+Version: 2.18.1~cvs20080103-0ubuntu1
+Depends: libc6 (>= 2.7-1)
+Description: statically linked binutils tools
+ This package contains statically linked binutils tools used
+ for linking kernel modules needed to mount /usr or /.  At the moment,
+ it only contains ld.
+Original-Maintainer: James Troup <james@xxxxxxxxxx>
+
+Package: ttf-indic-fonts-core
+Status: install ok installed
+Priority: optional
+Section: x11
+Installed-Size: 1328
+Maintainer: Ubuntu MOTU Developers <ubuntu-motu@xxxxxxxxxxxxxxxx>
+Architecture: all
+Source: ttf-indic-fonts
+Version: 1:0.5.0-0ubuntu1
+Depends: defoma
+Suggests: xserver-xfree86 | xserver | xfs, x-ttcidfont-conf
+Conffiles:
+ /etc/defoma/hints/ttf-indic-fonts-core.hints 89a28320b441e6948c8dcc1c890c7132
+Description: Core collection of free Indian language fonts
+ This is a set of TrueType fonts released under the GNU General
+ Public License for all the various Indian languages. For each language
+ only one font is provided in this package. For additional fonts, please
+ install the ttf-$language-fonts packages, or the ttf-indic-fonts
+ meta package to get all fonts installed.
+ .
+ Fonts shipped with this package are:
+ Bengali: MuktiNarrow-n, MuktiNarrow-b
+ Devanagari: lohit_hi
+ Gujarati: lohit_gu
+ Kannada: Malige-n, Malige-b
+ Malayalam: MalOtf
+ Oriya: utkal
+ Punjabi: lohit_pa
+ Tamil: lohit_ta
+ Telugu: Venama
+Original-Maintainer: Debian-IN Team <debian-in-workers@xxxxxxxxxxxxxxxxxxxxxxx>
+
+Package: tasksel
+Status: install ok installed
+Priority: important
+Section: admin
+Installed-Size: 880
+Maintainer: Ubuntu Installer Team <ubuntu-installer@xxxxxxxxxxxxxxxx>
+Architecture: all
+Version: 2.70ubuntu5
+Depends: apt (>= 0.6.45ubuntu14), aptitude (>= 0.2.15-1), debconf (>= 0.5) | debconf-2.0, debconf (>= 1.5.5) | cdebconf (>= 0.106), liblocale-gettext-perl, tasksel-data
+Conflicts: base-config (<< 2.32), debconf (<< 1.4.27)
+Description: Tool for selecting tasks for installation on Debian systems
+ This package provides 'tasksel', a simple interface for users who
+ want to configure their system to perform a specific task.
+Original-Maintainer: Debian Install System Team <debian-boot@xxxxxxxxxxxxxxxx>
+
+Package: libwvstreams4.4-extras
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 1096
+Maintainer: Ubuntu Core developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: wvstreams
+Version: 4.4.1-0ubuntu2
+Depends: libc6 (>= 2.7-1), libpam0g (>= 0.99.7.1), libssl0.9.8 (>= 0.9.8f-1), libwvstreams4.4-base, libxplc0.3.13, zlib1g (>= 1:1.2.3.3.dfsg-1)
+Description: C++ network libraries for rapid application development
+ WvStreams is a library suite that is comprised of several parts.  Included
+ in the extras package are:
+  * WvIPStreams: which includes WvTCPStream and WvUDPStream
+  * WvCrypto streams: a REALLY easy way to add SSL support to applications
+ .
+ These are the base classes used to build programs such as the ever popular
+ WvDial, TunnelVision, FastForward, KWvDial, retchmail, and many more yet
+ to come.  ;)
+Original-Maintainer: Simon Law <sfllaw@xxxxxxxxxx>
+
+Package: pppconfig
+Status: install ok installed
+Priority: optional
+Section: admin
+Installed-Size: 900
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: all
+Version: 2.3.17ubuntu1
+Replaces: manpages-fr
+Depends: ppp (>= 2.3.7), whiptail | dialog, lsb-base (>= 1.3-9ubuntu3)
+Conflicts: nscd (<< 2.3.2.ds1-14)
+Conffiles:
+ /etc/ppp/ip-up.d/0dns-up b6bca8a403a34713eb6e7018a02e032c
+ /etc/ppp/ip-down.d/0dns-down c54aa38483b4467430dd1c15ba9f4a49
+ /etc/init.d/dns-clean 91036627a3d7f0357784e27aa565ddd2
+Description: A text menu based utility for configuring ppp
+ It provides extensive explanations at each step.  pppconfig supports
+ PAP, CHAP, and chat methods of authentication.  It uses the standard
+ ppp configuration files and sets ppp up so that the standard pon and
+ poff commands can be used to control ppp.
+ Some features supported by pppconfig are:
+  - Multiple ISPs with separate nameservers.
+  - Modem detection.
+  - Dynamic DNS.
+  - Dial on demand.
+Original-Maintainer: John Hasler <jhasler@xxxxxxxxxx>
+
+Package: libgcc1
+Status: install ok installed
+Priority: required
+Section: libs
+Installed-Size: 76
+Maintainer: Ubuntu Core developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: gcc-4.2 (4.2.3-2ubuntu7)
+Version: 1:4.2.3-2ubuntu7
+Depends: gcc-4.2-base (= 4.2.3-2ubuntu7), libc6 (>= 2.7-1)
+Description: GCC support library
+ Shared version of the support library, a library of internal subroutines
+ that GCC uses to overcome shortcomings of particular machines, or
+ special needs for some languages.
+Original-Maintainer: Debian GCC Maintainers <debian-gcc@xxxxxxxxxxxxxxxx>
+
+Package: libck-connector0
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 76
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: consolekit
+Version: 0.2.3-3ubuntu5
+Depends: libc6 (>= 2.7-1), libdbus-1-3 (>= 1.1.1)
+Description: ConsoleKit libraries
+ ConsoleKit is a system daemon for tracking what users are logged
+ into the system and how they interact with the computer (e.g.
+ which keyboard and mouse they use).
+ .
+ This package provides a convenience library which simplifies the access to
+ ConsoleKit.
+Homepage: http://www.freedesktop.org/wiki/Software/ConsoleKit
+Original-Maintainer: Utopia Maintenance Team <pkg-utopia-maintainers@xxxxxxxxxxxxxxxxxxxxxxx>
+
+Package: libdebconfclient0
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 84
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: cdebconf
+Version: 0.125
+Depends: libc6 (>= 2.6.1-1)
+Description: Debian Configuration Management System (C-implementation)
+ Debconf is a configuration management system for Debian packages. It is
+ used by some packages to prompt you for information before they are
+ installed. This is a reimplementation of the original debconf version
+ in C.
+ .
+ This is the libraries needed by libdebconfclient-dev and cdebconf.
+Original-Maintainer: Debian Install System Team <debian-boot@xxxxxxxxxxxxxxxx>
+
+Package: libxcomposite1
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 60
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: libxcomposite
+Version: 1:0.4.0-1
+Depends: libc6 (>= 2.6.1-1), libx11-6, libxext6, libxfixes3 (>= 1:4.0.1), x11-common
+Description: X11 Composite extension library
+ libXcomposite provides an X Window System client interface to the Composite
+ extension to the X protocol.
+ .
+ The Composite extension allows clients called compositing managers to control
+ the final drawing of the screen.  Rendering is done into an off-screen buffer.
+ .
+ More information about X.Org can be found at:
+ <URL:http://xorg.freedesktop.org>
+ <URL:http://lists.freedesktop.org/mailman/listinfo/xorg>
+ .
+ This module can be found at
+ git://anongit.freedesktop.org/git/xorg/lib/libXcomposite
+Original-Maintainer: Debian X Strike Force <debian-x@xxxxxxxxxxxxxxxx>
+
+Package: libntfs-3g23
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 256
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: ntfs-3g
+Version: 1:1.2216-1ubuntu2
+Depends: libc6 (>= 2.4)
+Description: ntfs-3g filesystem in userspace (FUSE) library
+ The ntfs-3g driver is an open source, GPL licensed, third generation Linux
+ NTFS driver which was implemented by the Linux-NTFS project. It provides
+ full read-write access to NTFS, excluding access to encrypted files, writing
+ compressed files, changing file ownership, access right.
+ .
+ Technically it's based on and a major improvement to the third generation
+ Linux NTFS driver, ntfsmount. The improvements includes functionality,
+ quality and performance enhancements.
+ .
+ ntfs-3g is based on FUSE (userspace filesystem framework for Linux), thus
+ you will have to prepare fuse kernel module to be able to use it.
+ .
+ Fuse is available in any recent kernel. No need to prepare a kernel module
+ if you are already running Debian Etch kernel or newer.
+ .
+ This package contains the shared library.
+Homepage: http://www.ntfs-3g.org/
+Original-Maintainer: Adam Cécile (Le_Vert) <gandalf@xxxxxxxxxxx>
+
+Package: readahead
+Status: install ok installed
+Priority: optional
+Section: admin
+Installed-Size: 164
+Maintainer: Tollef Fog Heen <tfheen@xxxxxxxxxx>
+Architecture: i386
+Source: readahead-list
+Version: 1:0.20050517.0220-0ubuntu14
+Depends: libc6 (>= 2.4)
+Conffiles:
+ /etc/readahead/boot bd385a01189feb9e4674b6b2c51d7c8e
+ /etc/readahead/desktop cabdb61343a929c7154f293c3cde20fb
+ /etc/init.d/readahead 298c19e2db4315a3aef1477b47f685fe
+ /etc/init.d/readahead-desktop 56162a6ab7db40decf531986e2e7e639
+ /etc/init.d/stop-readahead 7aa11468d704d835e1fcf4386532eba8
+Description: read files into the page cache
+ readahead-list is an updated and enhanced version of the original readahead
+ utility.
+ .
+ It allows the user to specify a set of files to be read into the page cache
+ to accelerate first time loading of programs, typically during the boot
+ sequence.
+
+Package: libklibc
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 128
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: klibc
+Version: 1.5.7-4ubuntu4
+Description: minimal libc subset for use with initramfs
+ klibc is intended to be a minimalistic libc subset for use with
+ initramfs.  It is deliberately written for small size, minimal
+ entanglement, and portability, not speed.  It is definitely a work in
+ progress, and a lot of things are still missing.
+Original-Maintainer: maximilian attems <maks@xxxxxxxxxx>
+
+Package: libxv1
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 72
+Maintainer: Ubuntu Core Developers <ubuntu-devel@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: libxv
+Version: 2:1.0.3-1ubuntu1
+Depends: libc6 (>= 2.6), libx11-6, libxext6, x11-common
+Description: X11 Video extension library
+ libXv provides an X Window System client interface to the XVideo
+ extension to the X protocol.
+ .
+ The XVideo extension allows for accelerated drawing of videos.  Hardware
+ adaptors are exposed to clients, which may draw in a number of colourspaces,
+ including YUV.
+ .
+ More information about X.Org can be found at:
+ <URL:http://xorg.freedesktop.org>
+ <URL:http://lists.freedesktop.org/mailman/listinfo/xorg>
+Original-Maintainer: Debian X Strike Force <debian-x@xxxxxxxxxxxxxxxx>
+
+Package: libwmf0.2-7
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 548
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: libwmf
+Version: 0.2.8.4-6
+Depends: gtk2.0-binver-2.10.0, libc6 (>= 2.5-5), libexpat1 (>= 1.95.8), libfreetype6 (>= 2.2), libjpeg62, libpng12-0 (>= 1.2.13-4), libx11-6, zlib1g (>= 1:1.2.1), defoma (>= 0.11), gsfonts
+Description: Windows metafile conversion library
+ Windows metafile (WMF) is a picture format used by many Windows
+ programs, e.g. Microsoft Word.  libwmf is a library for interpreting
+ metafile images and either displaying them using X or converting them
+ to standard formats such as PNG, JPEG, PS, EPS and SVG(Z)...
+ .
+ This package contains the shared library.
+Original-Maintainer: Loic Minier <lool@xxxxxxxx>
+
+Package: hal
+Status: install ok installed
+Priority: optional
+Section: admin
+Installed-Size: 1728
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 0.5.11~rc2-1ubuntu8.1
+Depends: acl, adduser, consolekit, dbus (>= 0.61), hal-info (>= 20070402), libc6 (>= 2.4), libdbus-1-3 (>= 1.1.1), libdbus-glib-1-2 (>= 0.74), libexpat1 (>= 1.95.8), libgcc1 (>= 1:4.1.1-21), libglib2.0-0 (>= 2.16.0), libhal-storage1 (>= 0.5.11~rc2), libhal1 (>= 0.5.10), libpolkit2, libsmbios1, libstdc++6 (>= 4.1.1-21), libusb-0.1-4 (>= 2:0.1.12), lsb-base, mount (>= 2.13), pciutils, pm-utils, policykit (>= 0.7), udev (>= 0.065), usbutils, zlib1g (>= 1:1.2.3.3.dfsg-1)
+Recommends: eject, libsmbios-bin
+Suggests: gnome-device-manager
+Conffiles:
+ /etc/default/hal f505ed84310d5614ac67abe95828d519
+ /etc/init.d/hal 39864c1cadce17122780e30d9a3abe2c
+ /etc/udev/rules.d/95-hal.rules 1afe5cd68445909b1df6c63b405eead3
+ /etc/hal/fdi/policy/preferences.fdi 02a0788d8d5599fa703963e120c8c4ac
+ /etc/dbus-1/system.d/hal.conf 476bb09bf3ab178b66513d85d8938883
+Description: Hardware Abstraction Layer
+ HAL provides an abstract view on hardware.
+ .
+ This abstraction layer is simply an interface that makes it possible to
+ add support for new devices and new ways of connecting devices to the
+ computer, without modifying every application that uses the device.
+ It maintains a list of devices that currently exist, and can provide
+ information about those upon request.
+Homepage: http://hal.freedesktop.org/
+Original-Maintainer: Utopia Maintenance Team <pkg-utopia-maintainers@xxxxxxxxxxxxxxxxxxxxxxx>
+
+Package: ttf-lao
+Status: install ok installed
+Priority: optional
+Section: x11
+Installed-Size: 168
+Maintainer: Christian Perrier <bubulle@xxxxxxxxxx>
+Architecture: all
+Version: 0.0.20060226-2
+Depends: defoma
+Conffiles:
+ /etc/defoma/hints/ttf-lao.hints 0a0c690b0ff938a9759098642847da00
+Description: TrueType font for Lao language
+ This package includes fonts that are suitable for the display of the Lao
+ language.
+
+Package: xserver-xorg-video-imstt
+Status: install ok installed
+Priority: optional
+Section: x11
+Installed-Size: 104
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 1:1.1.0-7
+Replaces: xserver-xorg (<< 6.8.2-35), xserver-xorg-driver-imstt
+Provides: xserver-xorg-video-2
+Depends: libc6 (>= 2.6.1-1), xserver-xorg-core (>= 2:1.4)
+Conflicts: xserver-xorg-driver-imstt
+Description: X.Org X server -- IMSTT display driver
+ This package provides the driver for the Integrated Micro Solutions Twin Turbo
+ family of video cards.
+ .
+ More information about X.Org can be found at:
+ <URL:http://www.X.org>
+ <URL:http://xorg.freedesktop.org>
+ <URL:http://lists.freedesktop.org/mailman/listinfo/xorg>
+ .
+ This package is built from the X.org xf86-video-imstt driver module.
+Original-Maintainer: Debian X Strike Force <debian-x@xxxxxxxxxxxxxxxx>
+
+Package: grub
+Status: install ok installed
+Priority: optional
+Section: admin
+Installed-Size: 832
+Maintainer: Ubuntu Kernel Team <kernel-team@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 0.97-29ubuntu21
+Provides: linux-boot-loader
+Depends: debconf (>= 1.5.19) | cdebconf, libc6 (>= 2.4), libncurses5 (>= 5.6+20071006-3), ucf (>= 3.004-0ubuntu2), udev (>= 117-5)
+Suggests: grub-doc, mdadm
+Description: GRand Unified Bootloader
+ GRUB is a GPLed bootloader intended to unify bootloading across x86
+ operating systems.  In addition to loading the Linux kernel,
+ it implements the Multiboot standard, which allows for flexible loading
+ of multiple boot images (needed for modular kernels such as the GNU Hurd).
+Original-Maintainer: Grub Maintainers <pkg-grub-devel@xxxxxxxxxxxxxxxxxxxxxxx>
+
+Package: libasound2
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 1208
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: alsa-lib
+Version: 1.0.15-3ubuntu4
+Depends: libc6 (>= 2.7-1)
+Suggests: libasound2-plugins (>= 1.0.9)
+Conflicts: libasound2-plugins (<< 1.0.9)
+Description: ALSA library
+ This package contains the ALSA library and its standard
+ plugins.
+ .
+ ALSA is the Advanced Linux Sound Architecture.
+Homepage: http://www.alsa-project.org/
+Original-Maintainer: Debian ALSA Maintainers <pkg-alsa-devel@xxxxxxxxxxxxxxxxxxxxxxx>
+
+Package: app-install-data
+Status: install ok installed
+Priority: optional
+Section: gnome
+Installed-Size: 21208
+Maintainer: Michael Vogt <michael.vogt@xxxxxxxxxx>
+Architecture: all
+Source: app-install-data-ubuntu
+Version: 0.5.10.3
+Conffiles:
+ /etc/gnome-app-install/packages-whitelist f3c285e9b2c6b9ebd0dc5c38cab4678f
+Description: Ubuntu applications (data files)
+ This package contains the Ubuntu specific application data for
+ gnome-app-install, an easy to use and simple application installer.
+
+Package: libieee1284-3
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 100
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: libieee1284
+Version: 0.2.11-3
+Depends: libc6 (>= 2.7-1)
+Description: cross-platform library for parallel port access
+ This library was designed to ease the use of the parallel port. It will
+ automatically figure out which access method is available, depending on the
+ running kernel and the permissions of the process.
+ .
+ It handles particular queries to the devices, like fetching the Device ID of
+ a device.
+Original-Maintainer: Julien BLACHE <jblache@xxxxxxxxxx>
+
+Package: libbluetooth2
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 140
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: bluez-libs
+Version: 3.29-0ubuntu1
+Replaces: libsdp2 (<= 1.5-2)
+Depends: libc6 (>= 2.7-1)
+Conflicts: libsdp2 (<= 1.5-2)
+Description: Library to use the BlueZ Linux Bluetooth stack
+ BlueZ is the official Linux Bluetooth protocol stack. It is an Open Source
+ project distributed under GNU General Public License (GPL).
+Homepage: http://bluez.sourceforge.net
+Original-Maintainer: Debian Bluetooth Maintainers <pkg-bluetooth-maintainers@xxxxxxxxxxxxxxxxxxxxxxx>
+
+Package: base-files
+Essential: yes
+Status: install ok installed
+Priority: required
+Section: admin
+Installed-Size: 436
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 4.0.1ubuntu5.8.04.2
+Replaces: base, lsb-release (<< 3.0-8), miscutils
+Provides: base
+Depends: awk, base-passwd (>= 2.0.3.4), libpam-modules (>= 0.79-3ubuntu3)
+Conffiles:
+ /etc/debian_version c3a1f14e3cfb4e2a815ff14692258219
+ /etc/host.conf 89408008f2585c957c031716600d5a80
+ /etc/issue 723e0b4b856688d47275c171feb19d62
+ /etc/issue.net 1f7aae7d081e800ab42d3cf57a8e7b84
+ /etc/lsb-release c4a6bf94f921d1eb8255d6cb488b3b22
+Description: Debian base system miscellaneous files
+ This package contains the basic filesystem hierarchy of a Debian system, and
+ several important miscellaneous files, such as /etc/debian_version,
+ /etc/host.conf, /etc/issue, /etc/motd, /etc/profile, /etc/nsswitch.conf,
+ and others, and the text of several common licenses in use on Debian systems.
+Original-Maintainer: Santiago Vila <sanvila@xxxxxxxxxx>
+
+Package: libxtrap6
+Status: install ok installed
+Priority: optional
+Section: x11
+Installed-Size: 80
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: libxtrap
+Version: 2:1.0.0-4build1
+Depends: libc6 (>= 2.6), libice6 (>= 1:1.0.0), libsm6, libx11-6, libxext6, libxt6, x11-common
+Description: X11 event trapping extension library
+ libXTrap provides an interface to the DEC-XTRAP extension, which allows
+ for capture and synthesis of core input events.
+ .
+ More information about X.Org can be found at:
+ <URL:http://xorg.freedesktop.org>
+ <URL:http://lists.freedesktop.org/mailman/listinfo/xorg>
+ .
+ This module can be found as the module 'lib/XTrap' at
+ :pserver:anoncvs@xxxxxxxxxxxxxxxxxxx:/cvs/xorg
+Original-Maintainer: Debian X Strike Force <debian-x@xxxxxxxxxxxxxxxx>
+
+Package: mount
+Essential: yes
+Status: install ok installed
+Priority: required
+Section: admin
+Installed-Size: 368
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: util-linux
+Version: 2.13.1-5ubuntu2
+Pre-Depends: libc6 (>= 2.4), libselinux1
+Suggests: nfs-common (>= 1:1.1.0-13)
+Breaks: nfs-common (<< 1:1.1.0-7)
+Conflicts: libnfsidmap1
+Description: Tools for mounting and manipulating filesystems
+ This package provides the mount(8), umount(8), swapon(8),
+ swapoff(8), and losetup(8) commands.
+Original-Maintainer: LaMont Jones <lamont@xxxxxxxxxx>
+
+Package: ttf-kochi-gothic
+Status: install ok installed
+Priority: optional
+Section: x11
+Installed-Size: 7824
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: all
+Source: ttf-kochi
+Version: 1.0.20030809-4ubuntu2
+Provides: ttf-kochi-gothic-naga10
+Depends: defoma
+Pre-Depends: dpkg (>= 1.10.24)
+Suggests: ttf-kochi-mincho | ttf-kochi-mincho-naga10, x-ttcidfont-conf, xserver-xorg | xfs-xtt (>> 1:1.3.0.1-3) | xfs (>= 4.0.2-1)
+Conflicts: ttf-kochi-gothic-naga10
+Conffiles:
+ /etc/defoma/hints/ttf-kochi-gothic.hints 5eafdd0a0ea9b245f73715083b061895
+Description: Kochi Subst Gothic Japanese TrueType font without naga10
+ ttf-kochi-gothic is high quality, Japanese gothic TrueType font.
+ It does not include naga10 font, so it's DFSG-free.
+ .
+ The family of ttf-kochi-* is very smooth and beautiful compared with
+ current free Japanese TrueType fonts. It has bitmap hinting information,
+ so it's beautiful and not jagged to display on the CRT.
+ This font is suitable for both printing and displaying Japanese
+ characters.
+Original-Maintainer: GOTO Masanori <gotom@xxxxxxxxxx>
+
+Package: pcmciautils
+Status: install ok installed
+Priority: extra
+Section: admin
+Installed-Size: 156
+Maintainer: Colin Watson <cjwatson@xxxxxxxxxx>
+Architecture: i386
+Version: 014-4ubuntu1
+Depends: udev, module-init-tools (>= 3.2.2), lsb-base (>= 3.0-6), libc6 (>= 2.6.1-1), libsysfs2
+Suggests: wireless-tools
+Conffiles:
+ /etc/udev/rules.d/85-pcmcia.rules c6210e83b4b2ac7cd7b98ef379a8fc4b
+ /etc/init.d/pcmciautils 30bdcfb63080e541020721aa1fae88f2
+Description: PCMCIA utilities for Linux 2.6
+ This package provides PCMCIA initialisation tools for Linux 2.6.13-rc1 or
+ later, replacing the old pcmcia-cs tools used with earlier kernel versions.
+ PCMCIA cards are commonly used in laptops to provide expanded capabilities
+ such as network connections, modems, increased memory, etc.
+ .
+ To use PCMCIA you need to have kernel modules available to support
+ it. These are included in the stock Debian 2.6 kernel packages. You
+ will most likely also need udev, although it isn't always required.
+ .
+ The wireless-tools package is required by many wireless network adapters.
+Original-Maintainer: Colin Watson <cjwatson@xxxxxxxxxx>
+
+Package: xserver-xorg-video-cyrix
+Status: install ok installed
+Priority: optional
+Section: x11
+Installed-Size: 112
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 1:1.1.0-8
+Replaces: xserver-xorg (<< 6.8.2-35), xserver-xorg-driver-cyrix
+Provides: xserver-xorg-video-2
+Depends: libc6 (>= 2.6.1-1), xserver-xorg-core (>= 2:1.4)
+Conflicts: xserver-xorg-driver-cyrix
+Description: X.Org X server -- Cyrix display driver
+ This package provides the driver for the Cyrix family of video cards.
+ .
+ More information about X.Org can be found at:
+ <URL:http://www.X.org>
+ <URL:http://xorg.freedesktop.org>
+ <URL:http://lists.freedesktop.org/mailman/listinfo/xorg>
+ .
+ This package is built from the X.org xf86-video-cyrix driver module.
+Original-Maintainer: Debian X Strike Force <debian-x@xxxxxxxxxxxxxxxx>
+
+Package: language-pack-fr
+Status: install ok installed
+Priority: optional
+Section: translations
+Installed-Size: 36
+Maintainer: Language pack maintainers <language-packs@xxxxxxxxxx>
+Architecture: all
+Version: 1:8.04+20080527
+Replaces: language-pack-fr (<< 1:8.04+20080527), language-pack-fr-base, language-pack-gnome-fr (<< 1:8.04+20080527), language-pack-gnome-fr-base (<< 1:8.04+20080527), language-pack-kde-fr (<< 1:8.04+20080527), language-pack-kde-fr-base (<< 1:8.04+20080527)
+Depends: language-pack-fr-base
+Pre-Depends: dpkg (>= 1.10.27ubuntu1)
+Description: translation updates for language French
+ Translation data updates for all supported packages for:
+ French
+ .
+ language-pack-fr-base provides the bulk of translation data
+ and is updated only seldom. This package provides frequent translation
+ updates.
+ .
+ Please note that you should install language-support-fr
+ to get full support for this language.
+
+Package: libsqlite3-0
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 464
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: sqlite3
+Version: 3.4.2-2
+Depends: libc6 (>= 2.6.1-1)
+Description: SQLite 3 shared library
+ SQLite is a C library that implements an SQL database engine.
+ Programs that link with the SQLite library can have SQL database
+ access without running a separate RDBMS process.
+Original-Maintainer: Laszlo Boszormenyi (GCS) <gcs@xxxxxxxxx>
+
+Package: libtext-iconv-perl
+Status: install ok installed
+Priority: required
+Section: perl
+Installed-Size: 96
+Maintainer: Anibal Monsalve Salazar <anibal@xxxxxxxxxx>
+Architecture: i386
+Version: 1.4-3
+Depends: libc6 (>= 2.4-1), perl-base (>= 5.8.7-10ubuntu2), perlapi-5.8.7
+Description: converts between character sets in Perl
+ The iconv() family of functions from XPG4 define an API for converting
+ between character sets (e.g. UTF-8 to Latin1, EBCDIC to ASCII). They
+ are provided by libc6.
+ .
+ This package allows access to them from Perl via the Text::Iconv
+ package.
+ .
+  Homepage: http://search.cpan.org/~mpiotr/Text-Iconv-1.4/Iconv.pm
+
+Package: bluez-audio
+Status: install ok installed
+Priority: optional
+Section: admin
+Installed-Size: 372
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: bluez-utils
+Version: 3.26-0ubuntu6
+Replaces: bluez-utils (<= 3.26-0ubuntu1)
+Depends: libasound2 (>> 1.0.14), libbluetooth2 (>= 3.14), libc6 (>= 2.4), libdbus-1-3 (>= 1.1.1), libglib2.0-0 (>= 2.16.0), libgstreamer-plugins-base0.10-0 (>= 0.10.0), libgstreamer0.10-0 (>= 0.10.14), libxml2
+Conflicts: bluez-utils (<= 3.26-0ubuntu1)
+Conffiles:
+ /etc/bluetooth/audio.service ca529e04bd2761602d6fe3d491076916
+ /etc/bluetooth/audio.conf 27fc4da407c9c35519d078473d695fc2
+Description: Bluetooth audio support
+ This package contains a driver to communicate with audio-capable bluetooth
+ devices like handsets.
+ .
+ BlueZ is the official Linux Bluetooth protocol stack. It is an Open Source
+ project distributed under GNU General Public License (GPL).
+Homepage: http://bluez.sourceforge.net
+Tag: special::not-yet-tagged, special::not-yet-tagged::b
+Original-Maintainer: Debian Bluetooth Maintainers <pkg-bluetooth-maintainers@xxxxxxxxxxxxxxxxxxxxxxx>
+
+Package: console-setup
+Status: install ok installed
+Priority: optional
+Section: utils
+Installed-Size: 1264
+Maintainer: Ubuntu Installer Team <ubuntu-installer@xxxxxxxxxxxxxxxx>
+Architecture: all
+Version: 1.21ubuntu8
+Depends: console-terminus (>= 4.16), debconf (>= 0.5) | debconf-2.0, initramfs-tools (>= 0.85eubuntu12), xkb-data (>= 0.9)
+Recommends: kbd (>= 1.12-15) | console-tools (>= 1:0.2.3dbs-62ubuntu10)
+Suggests: lsb-base (>= 3.0-6)
+Conflicts: lsb (<< 2.0-6), lsb-base (<< 3.0-6), lsb-core (<< 2.0-6)
+Conffiles:
+ /etc/console-setup/compose.ARMSCII-8.inc fef36b61fb8b1cacc151ad3db127f777
+ /etc/console-setup/compose.CP1251.inc fef88d8c8dd4c726498003fd3cd84a7f
+ /etc/console-setup/compose.CP1255.inc c972a2e90938657e97b643366b98b2ed
+ /etc/console-setup/compose.CP1256.inc 5ea5e4d41da7a88f742863810e86144b
+ /etc/console-setup/compose.GEORGIAN-ACADEMY.inc b6d80f40abff7e8af236796ebaca0247
+ /etc/console-setup/compose.GEORGIAN-PS.inc cf45272b6bf35a22223b132600dc36c3
+ /etc/console-setup/compose.IBM1133.inc a31102602f7e7cab9738022b6c5469ae
+ /etc/console-setup/compose.ISIRI-3342.inc 5ada7fbba750192f11fa238add232ba9
+ /etc/console-setup/compose.ISO-8859-1.inc 719a4300a50dcb168d7de921bab338e9
+ /etc/console-setup/compose.ISO-8859-10.inc e5fce59617c839b56574c9e323d34686
+ /etc/console-setup/compose.ISO-8859-11.inc ad2f3cc7ee64602a790bad8a2a989243
+ /etc/console-setup/compose.ISO-8859-13.inc 9c2f47a52091515749fefc62fc8efd63
+ /etc/console-setup/compose.ISO-8859-14.inc a19822b59629ea7af7682d9247de807f
+ /etc/console-setup/compose.ISO-8859-15.inc cfa9b04fec26afa1debc17ce09d46a0a
+ /etc/console-setup/compose.ISO-8859-16.inc 8245c19b5262d8d23ca856587739eb20
+ /etc/console-setup/compose.ISO-8859-2.inc a56cb83dbe0cd88e4deef52d966d30e4
+ /etc/console-setup/compose.ISO-8859-3.inc e70d7b634791b9c97db75bddf6dcc5fa
+ /etc/console-setup/compose.ISO-8859-4.inc 4092be9556db0ac82e96eae413f1bd47
+ /etc/console-setup/compose.ISO-8859-5.inc f861a4b0403490677e6d400f2d7129da
+ /etc/console-setup/compose.ISO-8859-6.inc 41ea36ea1c1a1c0c9bebdf0016395e1f
+ /etc/console-setup/compose.ISO-8859-7.inc aa280de25f20e82f58da707101b24d48
+ /etc/console-setup/compose.ISO-8859-8.inc 9cceaa9f3312f89aba371d3c893f4e7b
+ /etc/console-setup/compose.ISO-8859-9.inc 1893bc3994c24917c907a17ceb2f284b
+ /etc/console-setup/compose.KOI8-R.inc 8cfd7766b86e5e55d6e71d0d95519c92
+ /etc/console-setup/compose.KOI8-U.inc 217ee62f6982736276f41f760f8622f8
+ /etc/console-setup/compose.TIS-620.inc 31b73af83ef3993c128e2b983b9eaf89
+ /etc/console-setup/compose.VISCII.inc 0741db54ddb6268e476010a44f219f03
+ /etc/init.d/keyboard-setup 2bb5dc059cfa2fb0aededfb6ea4b8eb8
+ /etc/init.d/console-setup ce37d52b185b6ab6b1b55a1eed7df2cb
+Description: Set up the font and the keyboard on the console
+ The package provides the Linux console with the same versatile
+ keyboard configuration that the X Window System uses.  As a result
+ there is no need to duplicate or change the keyboard files just to
+ make simple customisations such as the use of dead keys, the key
+ functioning as AltGr or Compose key, the key(s) to switch between
+ Latin and non-Latin mode, etc.
+ .
+ The package also contains console fonts supporting many of the
+ world's languages.  It provides an unified set of font faces - the
+ classic VGA, the simplistic Fixed, and the cleaned Terminus,
+ TerminusBold and TerminusBoldVGA.
+Original-Maintainer: Debian Install System Team <debian-boot@xxxxxxxxxxxxxxxx>
+
+Package: xserver-xorg-input-synaptics
+Status: install ok installed
+Priority: optional
+Section: x11
+Installed-Size: 196
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: xfree86-driver-synaptics
+Version: 0.14.7~git20070706-1ubuntu4
+Replaces: xfree86-driver-synaptics (<< 0.14.4-2), xorg-driver-synaptics
+Provides: xfree86-driver-synaptics, xorg-driver-synaptics, xserver-xorg-input-2
+Depends: libc6 (>= 2.7-1), libx11-6, libxext6, libxi6, xserver-xorg-core (>= 2:1.4)
+Suggests: gsynaptics | ksynaptics | qsynaptics
+Conflicts: xfree86-driver-synaptics (<< 0.14.4-2), xorg-driver-synaptics
+Description: Synaptics TouchPad driver for X.Org server
+ This package provides an input driver for the X.Org X server to enable
+ advanced features of the Synaptics Touchpad including:
+ .
+  * Movement with adjustable, non-linear acceleration and speed
+  * Button events through short touching of the touchpad
+  * Double-Button events through double short touching of the touchpad
+  * Dragging through short touching and holding down the finger on the touchpad
+  * Middle and right button events on the upper and lower corner of the touchpad
+  * Vertical scrolling (button four and five events) through moving the finger
+    on the right side of the touchpad
+  * The up/down button sends button four/five events
+  * Horizontal scrolling (button six and seven events) through moving the finger
+    on the lower side of the touchpad
+  * The multi-buttons send button four/five events, and six/seven events for
+    horizontal scrolling
+  * Adjustable finger detection
+  * Multifinger taps: two finger for middle button and three finger for right
+    button events. (Needs hardware support. Not all models implement this
+    feature.)
+  * Run-time configuration using shared memory. This means you can change
+    parameter settings without restarting the X server (see synclient(1)).
+  * It also provides a daemon to disable touchpad while typing at the keyboard
+    and thus avoid unwanted mouse movements (see syndaemon(1)).
+ .
+ Homepage: http://web.telia.com/~u89404340/touchpad/index.html
+Original-Maintainer: Debian X Strike Force <debian-x@xxxxxxxxxxxxxxxx>
+
+Package: pm-utils
+Status: install ok installed
+Priority: optional
+Section: admin
+Installed-Size: 188
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: all
+Version: 0.99.2-3ubuntu10
+Depends: powermgmt-base
+Recommends: hal (>= 0.5.9), radeontool, uswsusp, vbetool
+Description: utilities and scripts for power management
+ This packages provides simple shell command line tools to suspend and
+ hibernate your computer.
+ .
+  Homepage: http://webcvs.freedesktop.org/pm-utils/pm-utils/
+Original-Maintainer: Tim Dijkstra <tim@xxxxxxxxxxxxxxx>
+
+Package: xserver-xorg-video-vesa
+Status: install ok installed
+Priority: optional
+Section: x11
+Installed-Size: 100
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 1:1.3.0-4ubuntu4
+Replaces: xserver-xorg (<< 6.8.2-35), xserver-xorg-driver-vesa
+Provides: xserver-xorg-video-2
+Depends: libc6 (>= 2.7-1), xserver-xorg-core (>= 2:1.4)
+Conflicts: xserver-xorg-driver-vesa
+Description: X.Org X server -- VESA display driver
+ This driver for the X.Org X server (see xserver-xorg for a further description)
+ uses the standard VESA interface provided on all video cards, but runs
+ unaccelerated.  This driver is not recommended for use unless you have a
+ problem  with the normal driver for your card, because it will peform very
+ badly.
+ .
+ More information about X.Org can be found at:
+ <URL:http://www.X.org>
+ <URL:http://xorg.freedesktop.org>
+ <URL:http://lists.freedesktop.org/mailman/listinfo/xorg>
+ .
+ This package is built from the X.org xf86-video-vesa driver module.
+Original-Maintainer: Debian X Strike Force <debian-x@xxxxxxxxxxxxxxxx>
+
+Package: libreadline5
+Status: install ok installed
+Priority: important
+Section: libs
+Installed-Size: 316
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: readline5
+Version: 5.2-3build1
+Depends: readline-common, libc6 (>= 2.6-1), libncurses5 (>= 5.6)
+Description: GNU readline and history libraries, run-time libraries
+ The GNU readline library aids in the consistency of user interface
+ across discrete programs that need to provide a command line
+ interface.
+ .
+ The GNU history library provides a consistent user interface for
+ recalling lines of previously typed input.
+Original-Maintainer: Matthias Klose <doko@xxxxxxxxxx>
+
+Package: libncurses5
+Status: install ok installed
+Priority: required
+Section: libs
+Installed-Size: 416
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: ncurses
+Version: 5.6+20071124-1ubuntu2
+Depends: libc6 (>= 2.7-1)
+Recommends: libgpmg1
+Description: Shared libraries for terminal handling
+ This package contains the shared libraries necessary to run programs
+ compiled with ncurses.
+Original-Maintainer: Daniel Baumann <daniel@xxxxxxxxxx>
+
+Package: rsync
+Status: install ok installed
+Priority: optional
+Section: net
+Installed-Size: 512
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 2.6.9-6ubuntu2
+Depends: libacl1 (>= 2.2.11-1), libc6 (>= 2.4), libpopt0 (>= 1.10), lsb-base (>= 3.0), sysv-rc (>= 2.86.ds1-14.1ubuntu2)
+Suggests: openssh-client, openssh-server
+Conffiles:
+ /etc/default/rsync 126a5f9d12d57da27b95192fed269ad5
+ /etc/init.d/rsync e1037fcbbe0e3f3191eb8ce4e1705e98
+Description: fast remote file copy program (like rcp)
+ rsync is a program that allows files to be copied to and from remote
+ machines in much the same way as rcp.  It has many more options than
+ rcp, and uses the rsync remote-update protocol to greatly speed up
+ file transfers when the destination file already exists.
+ .
+ The rsync remote-update protocol allows rsync to transfer just the
+ differences between two sets of files across the network link.
+ .
+ This package also includes rsyncd daemon functionality.
+Original-Maintainer: Paul Slootman <paul@xxxxxxxxxx>
+
+Package: casper
+Status: install ok installed
+Priority: extra
+Section: misc
+Installed-Size: 344
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 1.132ubuntu0.2
+Depends: busybox-initramfs (>= 1:1.1.3-4ubuntu3), dmsetup, eject, initramfs-tools (>= 0.40ubuntu11), localechooser-data, sudo, user-setup, uuid-runtime
+Breaks: genext2fs (<< 1.4.1)
+Conflicts: usplash (<< 0.4-43)
+Conffiles:
+ /etc/casper.conf 7111aac567b9c9826bbacd6fc8f06202
+ /etc/init.d/casper 192a902f4b180ccde951963b19597b19
+Description: Run a "live" preinstalled system from read-only media
+Tag: admin::boot, admin::filesystem, implemented-in::shell, protocol::smb, role::plugin, scope::utility, special::completely-tagged, works-with-format::iso9660
+
+Package: tasksel-data
+Status: install ok installed
+Priority: important
+Section: admin
+Installed-Size: 2524
+Maintainer: Ubuntu Installer Team <ubuntu-installer@xxxxxxxxxxxxxxxx>
+Architecture: all
+Source: tasksel
+Version: 2.70ubuntu5
+Depends: laptop-detect, tasksel
+Conflicts: tasksel (<< 2.67)
+Description: Official tasks used for installation of Debian systems
+ This package contains data about the standard tasks available on a Debian
+ system.
+Original-Maintainer: Debian Install System Team <debian-boot@xxxxxxxxxxxxxxxx>
+
+Package: ppp
+Status: install ok installed
+Priority: optional
+Section: admin
+Installed-Size: 1028
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 2.4.4rel-9ubuntu2
+Replaces: ppp-pam, ppp-udeb
+Depends: libc6 (>= 2.6-1), libpam0g (>= 0.99.7.1), libpcap0.8 (>= 0.9.3-1), libpam-modules, libpam-runtime (>= 0.76-13.1), netbase, procps
+Suggests: iptables
+Conflicts: ppp-pam, ppp-udeb, pppdcapiplugin (<= 1:3.7.2005-07-09-2), makedev (<< 2.3.1-56)
+Conffiles:
+ /etc/bash_completion.d/pon 41cf8cde5bd9fefe51100a051947b118
+ /etc/apm/event.d/ppp c894b205a1638f6fbb7bb477c8d253b6
+ /etc/ppp/ip-up.d/0000usepeerdns 47b1eee2bd4e9e492ad5a9f5870ca272
+ /etc/ppp/ip-down.d/0000usepeerdns 71822da78b9163dfbcb6f1bbd662b9b6
+ /etc/ppp/pppoe_on_boot c3ea78aee841d29ca779783a013b4dac
+ /etc/ppp/options b2ec4487e38e801b70ac36b20b3de798
+ /etc/ppp/ip-up 612431b1564d97e3925bc692079aabdb
+ /etc/ppp/ip-down 7a44bcdb7d4a0920669b496bb4d007b5
+ /etc/ppp/ipv6-up 02838ef669ec30a3a6afef7b1ce7ecc9
+ /etc/ppp/ipv6-down 831796b566df95e0d5143ca6b35f082d
+ /etc/chatscripts/pap 17dbbede1dc894aa6c6c4e8be5727c1d
+ /etc/logrotate.d/ppp 8434ebaff1b3b33bb0ea0bce523adfd3
+ /etc/init.d/pppd-dns b2c62dcf0465db76694d5edb22a274ae
+ /etc/pam.d/ppp cc163be3dbe4258e639238ccd5bcdea0
+Description: Point-to-Point Protocol (PPP) daemon
+ The Point-to-Point Protocol (PPP) provides a standard way to transmit
+ datagrams over a serial link, as well as a standard way for the machines
+ at either end of the link (the "peers") to negotiate various optional
+ characteristics of the link.  Using PPP, a serial link can be used to
+ transmit Internet Protocol (IP) datagrams, allowing TCP/IP connections
+ between the peers.
+Original-Maintainer: Marco d'Itri <md@xxxxxxxx>
+
+Package: libxxf86misc1
+Status: install ok installed
+Priority: optional
+Section: x11
+Installed-Size: 60
+Maintainer: Ubuntu Core Developers <ubuntu-devel@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: libxxf86misc
+Version: 1:1.0.1-2
+Depends: libc6 (>= 2.5-0ubuntu1), libx11-6, libxext6, x11-common
+Description: X11 XFree86 miscellaneous extension library
+ libXxf86misc provides an interface to the XFree86-Misc extension, which
+ allows client applications to query the current keyboard and mouse settings
+ of the running XFree86-based (XFree86, Xorg) server.
+ .
+ More information about X.Org can be found at:
+ <URL:http://xorg.freedesktop.org>
+ <URL:http://lists.freedesktop.org/mailman/listinfo/xorg>
+ .
+ This module can be found as the module 'lib/Xxf86misc' at
+ :pserver:anoncvs@xxxxxxxxxxxxxxxxxxx:/cvs/xorg
+Original-Maintainer: Debian X Strike Force <debian-x@xxxxxxxxxxxxxxxx>
+
+Package: language-pack-pt-base
+Status: install ok installed
+Priority: optional
+Section: translations
+Installed-Size: 11276
+Maintainer: Language pack maintainers <language-packs@xxxxxxxxxx>
+Architecture: all
+Version: 1:8.04+20080527.2
+Replaces: language-pack-gnome-pt-base (<< 1:8.04+20080527.2), language-pack-kde-pt-base (<< 1:8.04+20080527.2), language-pack-pt (<< 1:8.04+20080527.2), language-pack-pt-base (<< 1:8.04+20080527.2)
+Depends: language-pack-pt (>= 1:8.04+20080527.2), locales (>= 2.3.6)
+Pre-Depends: dpkg (>= 1.10.27ubuntu1)
+Recommends: language-support-pt
+Conflicts: language-pack-gnome-pt (<< 1:8.04+20080527), language-pack-gnome-pt-base (<< 1:8.04+20080527), language-pack-pt (<< 1:8.04+20080527.2)
+Description: translations for language Portuguese
+ Translation data for all supported packages for:
+ Portuguese
+ .
+ This package provides the bulk of translation data and is updated
+ only seldom. language-pack-pt provides frequent
+ translation updates, so you should install this as well.
+ .
+ Please note that you should install language-support-pt
+ to get full support for this language (spell checkers, OpenOffice
+ locale packages, etc.).
+
+Package: libkeyutils1
+Status: install ok installed
+Priority: optional
+Section: misc
+Installed-Size: 56
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: keyutils
+Version: 1.2-4
+Replaces: keyutils-lib
+Depends: libc6 (>= 2.6.1-1)
+Conflicts: keyutils-lib
+Description: Linux Key Management Utilities (library)
+ Utilities to control the kernel key management facility and to provide a
+ mechanism by which the kernel call back to userspace to get a key instantiated.
+ .
+  Homepage: <http://people.redhat.com/~dhowells/keyutils/>
+ .
+ This package provides a wrapper library for the key management facility system
+ calls.
+Original-Maintainer: Daniel Baumann <daniel@xxxxxxxxxx>
+
+Package: parted
+Status: install ok installed
+Priority: optional
+Section: admin
+Installed-Size: 160
+Maintainer: Ubuntu Core developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 1.7.1-5.1ubuntu9.1
+Replaces: fsresize, parted1.6
+Depends: libc6 (>= 2.4), libncurses5 (>= 5.6+20071006-3), libparted1.7-1 (>= 1.7.1-1), libreadline5 (>= 5.2)
+Suggests: parted-doc
+Conflicts: fsresize, parted1.6
+Description: The GNU Parted disk partition resizing program
+ GNU Parted is a program that allows you to create, destroy,
+ resize, move and copy hard disk partitions. This is useful
+ for creating space for new operating systems, reorganising
+ disk usage, and copying data to new hard disks. This package
+ contains the Parted binary and manual page.
+ .
+ Parted currently supports DOS, Mac, Sun, BSD, GPT, MIPS and
+ PC98 disklabels/partition tables, as well as a 'loop' (raw
+ disk) type which allows use on RAID/LVM. Filesystems which
+ are currently fully supported are ext2, ext3, fat (FAT16
+ and FAT32), ReiserFS (with libreiserfs) and linux-swap.
+ Parted can also detect and remove HFS (Mac OS), JFS, NTFS,
+ UFS (Sun and HP), XFS and ASFS/AFFS/APFS (Amiga) filesystems,
+ but cannot create, resize or check these filesystems yet.
+ .
+ Note that ReiserFS support is only enabled if you install
+ the libreiserfs0.3-0 package. Since libreiserfs0.3-0 has been
+ removed from sarge, ReiserFS support is not compiled in the
+ default package.
+ .
+ The nature of this software means that any bugs could cause
+ massive data loss. While there are no known bugs at the moment,
+ they could exist, so please back up all important files before
+ running it, and do so at your own risk.
+Original-Maintainer: Parted Maintainer Team <parted-maintainers@xxxxxxxxxxxxxxxxxxxxxxx>
+
+Package: libvorbisenc2
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 1052
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: libvorbis
+Version: 1.2.0.dfsg-2
+Replaces: libvorbis0 (<< 1.0.0)
+Depends: libc6 (>= 2.6.1-1), libvorbis0a (>= 1.2.0)
+Conflicts: libvorbis0 (<< 1.0.0)
+Description: The Vorbis General Audio Compression Codec
+ Ogg Vorbis is a fully open, non-proprietary, patent-and-royalty-free,
+ general-purpose compressed audio format for audio and music at fixed
+ and variable bitrates from 16 to 128 kbps/channel.
+ .
+ The Vorbisenc library provides a convenient API for setting up an encoding
+ environment using libvorbis.
+Original-Maintainer: Debian Xiph.org Maintainers <pkg-xiph-maint@xxxxxxxxxxxxxxxxxxxxxxx>
+
+Package: logrotate
+Status: install ok installed
+Priority: important
+Section: admin
+Installed-Size: 160
+Maintainer: Paul Martin <pm@xxxxxxxxxx>
+Architecture: i386
+Version: 3.7.1-3
+Depends: libc6 (>= 2.4-1), libpopt0 (>= 1.10), libselinux1 (>= 1.30), cron | anacron | fcron, base-passwd (>= 2.0.3.4)
+Recommends: mailx
+Conffiles:
+ /etc/logrotate.conf 52a69079dac7bbc0ee80876d14dbf6a8
+ /etc/cron.daily/logrotate d2281ecb6f898b446ac8a5984ab5a243
+Description: Log rotation utility
+ The logrotate utility is designed to simplify the administration of
+ log files on a system which generates a lot of log files.  Logrotate
+ allows for the automatic rotation compression, removal and mailing of
+ log files.  Logrotate can be set to handle a log file daily, weekly,
+ monthly or when the log file gets to a certain size.  Normally, logrotate
+ runs as a daily cron job.
+
+Package: libpango1.0-common
+Status: install ok installed
+Priority: optional
+Section: misc
+Installed-Size: 204
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: all
+Source: pango1.0
+Version: 1.20.1-1
+Replaces: libpango-common (<< 1.0.0), libpango0
+Depends: debconf | debconf-2.0, defoma (>= 0.11.1), fontconfig (>= 2.1.91)
+Recommends: libpango1.0-0, x-ttcidfont-conf
+Suggests: ttf-arphic-bkai00mp, ttf-arphic-bsmi00lp, ttf-arphic-gbsn00lp, ttf-arphic-gkai00mp, ttf-baekmuk, ttf-kochi-gothic, ttf-kochi-mincho, ttf-thryomanes
+Conflicts: pango-libthai (<< 0.1.6-2)
+Conffiles:
+ /etc/defoma/config/pango.conf caba01a0d8c57a5b7eb501560736028a
+Description: Modules and configuration files for the Pango
+ Pango is a library for layout and rendering of text, with an emphasis
+ on internationalization. Pango can be used anywhere that text layout is
+ needed. however, most of the work on Pango-1.0 was done using the GTK+
+ widget toolkit as a test platform. Pango forms the core of text and
+ font handling for GTK+-2.0.
+ .
+ Pango is designed to be modular; the core Pango layout can be used with
+ four different font backends:
+  - Core X windowing system fonts
+  - Client-side fonts on X using the Xft library
+  - Direct rendering of scalable fonts using the FreeType library
+  - Native fonts on Microsoft backends
+ .
+ This package contains the Pango modules and the configuration files
+ which Pango needs.
+Original-Maintainer: Sebastien Bacher <seb128@xxxxxxxxxx>
+
+Package: libexpat1
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 188
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: expat
+Version: 2.0.1-0ubuntu1
+Depends: libc6 (>= 2.6.1-1)
+Description: XML parsing C library - runtime library
+ This package contains the runtime, shared library of expat, the C
+ library for parsing XML.
+Original-Maintainer: Debian XML/SGML Group <debian-xml-sgml-pkgs@xxxxxxxxxxxxxxxxxxxxxxx>
+
+Package: libltdl3
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 248
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: libtool
+Version: 1.5.26-1ubuntu1
+Depends: libc6 (>= 2.7-1)
+Description: A system independent dlopen wrapper for GNU libtool
+ This package contains the run-time libltdl library.
+ .
+ A small library that aims at hiding the various difficulties of
+ dlopening libraries from programmers.  It is a system independent
+ dlopen wrapper for GNU libtool.
+ .
+ It supports the following dlopen interfaces:
+   * dlopen (Solaris, Linux and various BSD flavors)
+   * shl_load (HP-UX)
+   * LoadLibrary (Win16 and Win32)
+   * load_add_on (BeOS)
+   * GNU DLD (emulates dynamic linking for static libraries)
+   * libtool's dlpreopen
+Original-Maintainer: Kurt Roeckx <kurt@xxxxxxxxx>
+
+Package: system-services
+Status: install ok installed
+Priority: required
+Section: base
+Installed-Size: 76
+Maintainer: Scott James Remnant <scott@xxxxxxxxxx>
+Architecture: i386
+Source: upstart
+Version: 0.3.9-2
+Replaces: upstart (<< 0.2.1-6)
+Depends: upstart (>= 0.2.0), upstart-compat-sysv
+Conffiles:
+ /etc/event.d/tty1 719f219c269467fae2b0df8db9193280
+ /etc/event.d/tty2 adc56d2a31a4a7035337a236384ab135
+ /etc/event.d/tty3 d6bf65feb1d2f2aa40a2d9f3a4a963e2
+ /etc/event.d/tty4 0e5f36ab665959a7d27f4d036d4e2ce3
+ /etc/event.d/tty5 69e99b4e674a7a2d302c17b07b9a3cd5
+ /etc/event.d/tty6 948ea46dae0fa8062994cd70d61a25d3
+Description: definitions of essential system services
+ This package contains the definitions of services essential for the
+ normal operation of a Linux system.
+
+Package: iproute
+Status: install ok installed
+Priority: optional
+Section: net
+Installed-Size: 884
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 20071016-2ubuntu1
+Provides: arpd
+Depends: libatm1, libc6 (>= 2.4), libdb4.6
+Suggests: iproute-doc
+Conflicts: arpd
+Conffiles:
+ /etc/iproute2/ematch_map 0b9befbbbee4b415319b8070f18b9b88
+ /etc/iproute2/rt_dsfield 4f5a41d3f54cbe251826a6f7a3fff59d
+ /etc/iproute2/rt_protos 83da07a831e71eb4f6dfaec3d27de345
+ /etc/iproute2/rt_realms 7137bdf40e8d58c87ac7e3bba503767f
+ /etc/iproute2/rt_scopes 6298b8df09e9bda23ea7da49021ca457
+ /etc/iproute2/rt_tables a1313318d6778fe6b8c680248ef5a463
+Description: Professional tools to control the networking in Linux kernels
+ This is `iproute', the professional set of tools to control the
+ networking behavior in kernels 2.2.x and later.
+ .
+ At least, the options CONFIG_NETLINK and CONFIG_NETLINK_DEV (or
+ CONFIG_RTNETLINK) must be compiled into the running kernel.
+ .
+ This package is also known as iproute2 upstream and in some
+ documentation.
+Homepage: http://www.linux-foundation.org/en/Net:Iproute2
+Original-Maintainer: Alexander Wirt <formorer@xxxxxxxxxx>
+
+Package: xserver-xorg-video-rendition
+Status: install ok installed
+Priority: optional
+Section: x11
+Installed-Size: 128
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 1:4.1.3.dfsg.1-4
+Replaces: xserver-xorg (<< 6.8.2-35), xserver-xorg-driver-rendition
+Provides: xserver-xorg-video-2
+Depends: libc6 (>= 2.6.1-1), xserver-xorg-core (>= 2:1.4)
+Conflicts: xserver-xorg-driver-rendition
+Description: X.Org X server -- Rendition display driver
+ This package provides the driver for the Rendition Verite family of chipsets,
+ commonly found in 3D accelerators such as the Creative 3D Blaster.
+ .
+ More information about X.Org can be found at:
+ <URL:http://www.X.org>
+ <URL:http://xorg.freedesktop.org>
+ <URL:http://lists.freedesktop.org/mailman/listinfo/xorg>
+ .
+ This package is built from the X.org xf86-video-rendition driver module.
+Original-Maintainer: Debian X Strike Force <debian-x@xxxxxxxxxxxxxxxx>
+
+Package: bogofilter-common
+Status: install ok installed
+Priority: optional
+Section: mail
+Installed-Size: 472
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: all
+Source: bogofilter
+Version: 1.1.5-2ubuntu5
+Replaces: bogofilter (<< 0.94.14-1)
+Suggests: pax
+Conffiles:
+ /etc/bogofilter.cf 90bec9152e12b6f29f093910d854e008
+Description: a fast Bayesian spam filter (common files)
+ This package implements a fast Bayesian spam filter along the lines suggested
+ by Paul Graham in his article "A Plan For Spam".
+ .
+ This version substantially improves on Paul's proposal by doing smarter
+ lexical analysis.  In particular, hostnames and IP addresses are retained
+ as recognition features rather than broken up. Various kinds of MTA
+ cruft such as dates and message-IDs are discarded so as not to bloat
+ the word lists.
+Original-Maintainer: Clint Adams <schizo@xxxxxxxxxx>
+
+Package: libgsf-1-common
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 160
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: all
+Source: libgsf
+Version: 1.14.7-2ubuntu1
+Replaces: libgsf-1 (<= 1.12.3-4)
+Description: Structured File Library - common files
+ The GNOME Structured File Library library aims to provide an efficient
+ extensible I/O abstraction for dealing with different structured file
+ formats.
+ .
+ These are the architecture independent files that are part of libgsf,
+ like translations of messages.
+Original-Maintainer: J.H.M. Dassen (Ray) <jdassen@xxxxxxxxxx>
+
+Package: libglut3
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 48
+Maintainer: Jamie Wilkinson <jaq@xxxxxxxxxx>
+Architecture: all
+Source: glut
+Version: 3.7-25
+Depends: freeglut3
+Description: the OpenGL Utility Toolkit
+ GLUT (as in ``gluttony'') is a window system independent toolkit for
+ writing OpenGL programs.  It implements a simple windowing API, which
+ makes life considerably easier when learning about and exploring OpenGL
+ programming.
+ .
+ GLUT is designed for constructing small to medium sized OpenGL programs,
+ however it is not a full-featured toolkit, so large applications requiring
+ sophisticated user interfaces are better off using native window system
+ toolkits like GTK or Motif.
+ .
+ This package has been replaced by ``freeglut3''.
+
+Package: libterm-readkey-perl
+Status: install ok installed
+Priority: optional
+Section: perl
+Installed-Size: 140
+Maintainer: Ubuntu MOTU Developers <ubuntu-motu@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 2.30-3ubuntu1
+Replaces: adbbs
+Depends: perlapi-5.8.8, perl (>= 5.8.8-7), libc6 (>= 2.5-0ubuntu1)
+Description: A perl module for simple terminal control
+ Term::ReadKey is a compiled perl module dedicated to providing simple
+ control over terminal driver modes (cbreak, raw, cooked, etc.,) support for
+ non-blocking reads, if the architecture allows, and some generalized handy
+ functions for working with terminals. One of the main goals is to have the
+ functions as portable as possible, so you can just plug in "use
+ Term::ReadKey" on any architecture and have a good likelyhood of it working.
+Original-Maintainer: Debian Perl Group <pkg-perl-maintainers@xxxxxxxxxxxxxxxxxxxxxxx>
+
+Package: apmd
+Status: install ok installed
+Priority: optional
+Section: admin
+Installed-Size: 252
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 3.2.2-8.1ubuntu1
+Depends: libapm1 (>= 3.2.0-7), libc6 (>= 2.5-5), debconf (>= 1.2.9) | debconf-2.0, powermgmt-base, lsb-base (>= 1.3-9ubuntu3), sysv-rc (>= 2.86.ds1-14.1ubuntu2)
+Suggests: xapm
+Conffiles:
+ /etc/apm/scripts.d/hwclock 214b964af20f205cafb4977694a9ce67
+ /etc/apm/apmd_proxy 9691d0a9ecb05fb60e59730f0b6ca5d1
+ /etc/logcheck/ignore.d.paranoid/apmd dd148b02d45477863065450ff4a3d1be
+ /etc/default/apmd 13bacd2e1ad12ed72dbb0288ef746fc7
+ /etc/init.d/apmd 2f165379196dca2af4c0a956d26cb8bb
+Description: Utilities for Advanced Power Management (APM)
+ On laptop computers, the Advanced Power Management (APM) support
+ provides access to battery status information and may help you to
+ conserve battery power, depending on your laptop and the APM
+ implementation.  The apmd program also lets you run arbitrary programs
+ when APM events happen (for example, you can eject PCMCIA devices when
+ you suspend, or change hard drive timeouts when you connect the battery).
+ .
+ This package contains apmd(8), a daemon for logging and acting on APM
+ events; and apm(1), a client that prints the information in /proc/apm
+ in a readable format.
+ .
+ apmd is notified of APM events by the APM driver in the kernel.
+ .
+ Debian kernels are built with APM support but it is disabled by
+ default.  You need to boot the kernel with the "apm=on" option if you
+ want to enable the driver. (You may need to add this option to your
+ lilo command line.)
+ .
+ In most cases, users may want to know that there are newer power
+ management schemes, like ACPI.
+ .
+  Homepage: http://www.worldvisions.ca/~apenwarr/apmd/
+Original-Maintainer: Anibal Monsalve Salazar <anibal@xxxxxxxxxx>
+
+Package: dhcdbd
+Status: install ok installed
+Priority: optional
+Section: admin
+Installed-Size: 248
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 3.0-1ubuntu1
+Depends: libc6 (>= 2.6.1-1), libdbus-1-3 (>= 1.1.1), dhcp3-client, dbus (>= 0.60), lsb-base (>= 3.0-6)
+Conffiles:
+ /etc/dbus-1/system.d/dhcdbd.conf cc127c5afc69fcafc47bc02fbcc18b3c
+ /etc/init.d/dhcdbd 149f8b11b5fee50ee2fc5619d00ddea0
+ /etc/dhcp3/dhclient-exit-hooks.d/zzzz_dhcdbd 4f39847134d74ce6b14255de1ec89046
+Description: D-Bus interface to the ISC DHCP client
+ dhcdbd provides a D-Bus interface to dhclient, the DHCP client from ISC,
+ so applications such as NetworkManager can query and control dhclient.
+ This allows an application-neutral interface for such operations
+Original-Maintainer: Riccardo Setti <giskard@xxxxxxxxxxxxx>
+
+Package: libpango1.0-0
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 772
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: pango1.0
+Version: 1.20.1-1
+Provides: pango1.0-modver-1.6.0
+Depends: libc6 (>= 2.4), libcairo2 (>= 1.5.18), libdatrie0 (>= 0.1.2), libfontconfig1 (>= 2.4.0), libfreetype6 (>= 2.3.5), libglib2.0-0 (>= 2.16.0), libpango1.0-common (>= 1.20.1-1), libthai0 (>= 0.1.7), libx11-6, libxft2 (>> 2.1.1), libxrender1, zlib1g (>= 1:1.2.3.3.dfsg-1)
+Conflicts: pango-libthai
+Description: Layout and rendering of internationalized text
+ Pango is a library for layout and rendering of text, with an emphasis
+ on internationalization. Pango can be used anywhere that text layout is
+ needed. however, most of the work on Pango-1.0 was done using the GTK+
+ widget toolkit as a test platform. Pango forms the core of text and
+ font handling for GTK+-2.0.
+ .
+ Pango is designed to be modular; the core Pango layout can be used with
+ four different font backends:
+  - Core X windowing system fonts
+  - Client-side fonts on X using the Xft library
+  - Direct rendering of scalable fonts using the FreeType library
+  - Native fonts on Microsoft backends
+ .
+ This package contains the shared libraries.
+Original-Maintainer: Sebastien Bacher <seb128@xxxxxxxxxx>
+
+Package: usbutils
+Status: install ok installed
+Priority: optional
+Section: utils
+Installed-Size: 340
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 0.73-5ubuntu2
+Depends: libc6 (>= 2.7-1), libusb-0.1-4 (>= 2:0.1.12), zlib1g (>= 1:1.2.3.3.dfsg-1)
+Suggests: wget (>= 1.8.1-6) | lynx (>= 2.8.4.1b-3)
+Description: Linux USB utilities
+ This package contains the lsusb utility for inspecting the devices
+ connected to the USB bus. It shows a graphical representation of the
+ devices that are currently plugged in, showing the topology of the
+ USB bus. It also displays information on each individual device on
+ the bus.
+ .
+ More information can be found at the Linux USB web site
+ http://www.linux-usb.org/ .
+Original-Maintainer: Aurelien Jarno <aurel32@xxxxxxxxxx>
+
+Package: libdevmapper1.02.1
+Status: install ok installed
+Priority: required
+Section: libs
+Installed-Size: 148
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: devmapper
+Version: 2:1.02.20-2ubuntu2
+Provides: libdevmapper
+Depends: libc6 (>= 2.7-1), libselinux1 (>= 2.0.15), libsepol1 (>= 2.0.3)
+Recommends: dmsetup (>= 2:1.02.08-1ubuntu2)
+Description: The Linux Kernel Device Mapper userspace library
+ The Linux Kernel Device Mapper is the LVM (Linux Logical Volume Management)
+ Team's implementation of a minimalistic kernel-space driver that handles
+ volume management, while keeping knowledge of the underlying device layout
+ in user-space.  This makes it useful for not only LVM, but EVMS, software
+ raid, and other drivers that create "virtual" block devices.
+ .
+ This package contains the (user-space) shared library for accessing the
+ device-mapper; it allows usage of the device-mapper through a clean,
+ consistent interface (as opposed to through kernel ioctls).
+Original-Maintainer: Debian LVM Team <pkg-lvm-maintainers@xxxxxxxxxxxxxxxxxxxxxxx>
+
+Package: ttf-freefont
+Status: install ok installed
+Priority: optional
+Section: x11
+Installed-Size: 3444
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: all
+Version: 20060501cvs-12
+Depends: defoma
+Recommends: x-ttcidfont-conf
+Conffiles:
+ /etc/defoma/hints/ttf-freefont.hints 8dc622817ea6efb8f8199a0443a387b5
+Description: Freefont Serif, Sans and Mono Truetype fonts
+ A set of free high-quality TrueType fonts covering the UCS
+ character set. These fonts are similar to the (in)famous Helvetica,
+ Times and Courier fonts.
+Original-Maintainer: Debian Fonts Task Force <pkg-fonts-devel@xxxxxxxxxxxxxxxxxxxxxxx>
+
+Package: libxi6
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 88
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: libxi
+Version: 2:1.1.3-1
+Depends: libc6 (>= 2.6.1-1), libx11-6, libxext6, x11-common
+Description: X11 Input extension library
+ libXi provides an X Window System client interface to the XINPUT
+ extension to the X protocol.
+ .
+ The Input extension allows setup and configuration of multiple input devices,
+ and will soon allow hotplugging of input devices; to be added and removed on
+ the fly.
+ .
+ More information about X.Org can be found at:
+ <URL:http://xorg.freedesktop.org>
+ <URL:http://lists.freedesktop.org/mailman/listinfo/xorg>
+ .
+ This module can be found at
+ git://anongit.freedesktop.org/git/xorg/lib/libXi
+Original-Maintainer: Debian X Strike Force <debian-x@xxxxxxxxxxxxxxxx>
+
+Package: libhal1
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 192
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: hal
+Version: 0.5.11~rc2-1ubuntu8.1
+Depends: libc6 (>= 2.4), libdbus-1-3 (>= 1.1.1)
+Description: Hardware Abstraction Layer - shared library
+ HAL provides an abstract view on hardware.
+ .
+ This abstraction layer is simply an interface that makes it possible to
+ add support for new devices and new ways of connecting devices to the
+ computer, without modifying every application that uses the device.
+ It maintains a list of devices that currently exist, and can provide
+ information about those upon request.
+ .
+ This package contains shared libraries to be used by applications.
+Homepage: http://hal.freedesktop.org/
+Original-Maintainer: Utopia Maintenance Team <pkg-utopia-maintainers@xxxxxxxxxxxxxxxxxxxxxxx>
+
+Package: xinit
+Status: install ok installed
+Priority: optional
+Section: x11
+Installed-Size: 108
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 1.0.7-2
+Replaces: xbase-clients (<= 1:7.2.ds2-3)
+Depends: cpp, libc6 (>= 2.7-1), libx11-6
+Pre-Depends: x11-common (>= 1:7.0.0)
+Conffiles:
+ /etc/X11/xinit/xinitrc 41b8ad55a49b9f518dbd38688e1a7d6a
+ /etc/X11/xinit/xserverrc 5b09dad193ec4f79c5d2b8112a2b9c25
+Description: X server initialisation tool
+ xinit and startx are programs which facilitate starting an X server, and
+ loading a base X session.
+Original-Maintainer: Debian X Strike Force <debian-x@xxxxxxxxxxxxxxxx>
+
+Package: libattr1
+Status: install ok installed
+Priority: required
+Section: libs
+Installed-Size: 68
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: attr
+Version: 1:2.4.39-1
+Depends: libc6 (>= 2.6.1-1)
+Conflicts: attr (<< 2.0.0)
+Description: Extended attribute shared library
+ Contains the runtime environment required by programs that make use
+ of extended attributes.
+ .
+  Homepage: http://oss.sgi.com/projects/xfs/
+Original-Maintainer: Nathan Scott <nathans@xxxxxxxxxx>
+
+Package: xserver-xorg-video-dummy
+Status: install ok installed
+Priority: optional
+Section: x11
+Installed-Size: 76
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 1:0.2.0-7
+Replaces: xserver-xorg (<< 6.8.2-35), xserver-xorg-driver-dummy
+Provides: xserver-xorg-video-2
+Depends: libc6 (>= 2.6.1-1), xserver-xorg-core (>= 2:1.4)
+Conflicts: xserver-xorg-driver-dummy
+Description: X.Org X server -- dummy display driver
+ This package provides a 'dummy' display driver, which does not actually
+ display anything.
+ .
+ More information about X.Org can be found at:
+ <URL:http://www.X.org>
+ <URL:http://xorg.freedesktop.org>
+ <URL:http://lists.freedesktop.org/mailman/listinfo/xorg>
+ .
+ This package is built from the X.org xf86-video-dummy driver module.
+Original-Maintainer: Debian X Strike Force <debian-x@xxxxxxxxxxxxxxxx>
+
+Package: xfonts-base
+Status: install ok installed
+Priority: optional
+Section: x11
+Installed-Size: 8312
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: all
+Version: 1:1.0.0-5
+Replaces: xfonts-misc
+Depends: xfonts-utils (>= 1:1.0.0-6)
+Suggests: xfs | xserver
+Conffiles:
+ /etc/X11/fonts/misc/xfonts-base.alias a8ec05d528431d4c9703b55a7efd67a8
+Description: standard fonts for X
+ xfonts-base provides a standard set of low-resolution bitmapped fonts.  In
+ most cases it is desirable to have the X font server (xfs) and/or an X server
+ installed to make the fonts available to X clients.
+ .
+ This package contains primarily fonts in the ISO 10646-1 and ISO 8859-1
+ encodings, to conserve disk space.  (A small selection of fonts in ISO
+ 8859-8, JIS-X0208.1983, JIS-X0208.1976, and GB2312.1980 fonts are also
+ included.)  For other encodings, see the xfonts-base-transcoded package.
+ .
+ If you are not using a remote font server, you must install this package
+ if you are installing an X server.  It contains fonts, including the
+ 'fixed' font, without which X servers will not work.
+Original-Maintainer: Debian X Strike Force <debian-x@xxxxxxxxxxxxxxxx>
+
+Package: xserver-xorg-video-sisusb
+Status: install ok installed
+Priority: optional
+Section: x11
+Installed-Size: 148
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 1:0.8.1-9
+Replaces: xserver-xorg (<< 6.8.2-35), xserver-xorg-driver-sisusb
+Provides: xserver-xorg-video-2
+Depends: libc6 (>= 2.6.1-1), xserver-xorg-core (>= 2:1.4)
+Conflicts: xserver-xorg-driver-sisusb
+Description: X.Org X server -- SiS USB display driver
+ This package provides the driver for SiS USB-attached video devices.
+ .
+ More information about X.Org can be found at:
+ <URL:http://www.X.org>
+ <URL:http://xorg.freedesktop.org>
+ <URL:http://lists.freedesktop.org/mailman/listinfo/xorg>
+ .
+ This package is built from the X.org xf86-video-sisusb driver module.
+Original-Maintainer: Debian X Strike Force <debian-x@xxxxxxxxxxxxxxxx>
+
+Package: libdaemon0
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 68
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: libdaemon
+Version: 0.12-0.1
+Depends: libc6 (>= 2.6)
+Description: lightweight C library for daemons
+ libdaemon is a leightweight C library which eases the writing of UNIX
+ daemons. It consists of the following parts:
+  * A wrapper around fork() which does the correct daemonization
+    procedure of a process
+  * A wrapper around syslog() for simpler and compatible log output to
+    Syslog or STDERR
+  * An API for writing PID files
+  * An API for serializing UNIX signals into a pipe for usage with
+    select() or poll()
+ .
+ Routines like these are included in most of the daemon software
+ available. It is not that simple to get it done right and code
+ duplication cannot be a goal.
+ .
+ This package includes the run time library.
+Original-Maintainer: Oliver Kurth <oku@xxxxxxxxxx>
+
+Package: libpcap0.8
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 236
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 0.9.8-2
+Depends: libc6 (>= 2.6.1-1)
+Description: System interface for user-level packet capture
+ libpcap (Packet CAPture) provides a portable framework for low-level
+ network monitoring.  Applications include network statistics collection,
+ security monitoring, network debugging, etc.
+ .
+ Since almost every system vendor provides a different interface for
+ packet capture, and since there are several tools that require this
+ functionality, we've created this system-independent API to ease in
+ porting and to alleviate the need for several system-dependent packet
+ capture modules in each application.
+Original-Maintainer: Romain Francoise <rfrancoise@xxxxxxxxxx>
+
+Package: libsmbios1
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 660
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: libsmbios
+Version: 0.13.10-1ubuntu1
+Depends: libc6 (>= 2.7-1), libgcc1 (>= 1:4.1.1-21), libstdc++6 (>= 4.2.1-4)
+Suggests: libsmbios-doc
+Description: Provide access to (SM)BIOS information -- dynamic library
+ libsmbios aims towards providing access to as much BIOS information as
+ possible. It does this by providing a library of functions that can be used
+ as well as sample binaries.
+ .
+ It incorporates extensible access to SMBIOS information capabilities and
+ ability to perform unit tests across multiple systems without using physical
+ hardware. Moreover, centralized, data-driven exception handling for broken
+ BIOS tables is provided. Currently, full access to the SMBIOS table and its
+ items is implemented. Additionally, access and manipulation of Dell Indexed
+ IO Token (type 0xD4) is implemented. This token is a vendor-extention
+ SMBIOS structure which allows uniform access to manipulate the system CMOS
+ to enable, disable, or otherwise manipulate normal BIOS functions or features.
+Original-Maintainer: Jose Luis Tallon <jltallon@xxxxxxxxxxxxxxxxx>
+
+Package: guidance-backends
+Status: install ok installed
+Priority: optional
+Section: kde
+Installed-Size: 1404
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: kde-guidance
+Version: 0.8.0svn20080103-0ubuntu16.1
+Replaces: kde-guidance (<< 0.8.0svn20070928-0ubuntu4)
+Depends: libc6 (>= 2.1.3), libx11-6, libxext6, libxrandr2 (>= 2:1.2.0), libxrender1, libxss1, libxxf86vm1, python (>= 2.5), python (<< 2.6), python-support (>= 0.7.1)
+Conflicts: kde-guidance (<< 0.8.0svn20070928-0ubuntu4)
+Description: collection of system administration tools for GNU/Linux
+ This package contains the platform neutral backends used in the
+ Guidance configuration tools.
+ .
+  Homepage: http://www.simonzone.com/software/guidance
+Original-Maintainer: Debian KDE Extras Team <pkg-kde-extras@xxxxxxxxxxxxxxxxxxxxxxx>
+
+Package: libhtml-tree-perl
+Status: install ok installed
+Priority: optional
+Section: perl
+Installed-Size: 524
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: all
+Version: 3.23-1
+Replaces: libwww-perl (<< 5.36-0)
+Depends: perl (>= 5.6.0-16), libhtml-parser-perl, libhtml-tagset-perl (>= 3.02)
+Conflicts: libwww-perl (<< 5.36-0)
+Description: represent and create HTML syntax trees
+ This is a collection of modules that represent, create and extract
+ information from HTML syntax trees.  These modules used to be part of
+ the libwww-perl distribution, but are now unbundled in order to
+ facilitate a separate development track.
+Original-Maintainer: Debian Catalyst Maintainers <pkg-catalyst-maintainers@xxxxxxxxxxxxxxxxxxxxxxx>
+
+Package: libsnmp15
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 2864
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: net-snmp
+Version: 5.4.1~dfsg-4ubuntu4
+Replaces: snmp (<= 3.6.2-3), snmpd (<= 4.1.2-1)
+Depends: libc6 (>= 2.7-1), libperl5.8 (>= 5.8.8), libsensors3 (>= 1:2.10.3-1), libsnmp-base (>= 5.4.1~dfsg-4ubuntu4), libssl0.9.8 (>= 0.9.8f-1), libwrap0
+Description: SNMP (Simple Network Management Protocol) library
+ The Simple Network Management Protocol (SNMP) provides a framework
+ for the exchange of management information between agents (servers)
+ and clients.
+ .
+ The Net-SNMP library contains common functions for the construction,
+ sending, receiving, decoding, and manipulation of the SNMP requests
+ and responses.
+Original-Maintainer: Net-SNMP Packaging Team <pkg-net-snmp-devel@xxxxxxxxxxxxxxxxxxxxxxx>
+
+Package: genisoimage
+Status: install ok installed
+Priority: optional
+Section: otherosfs
+Installed-Size: 1356
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: cdrkit
+Version: 9:1.1.6-1ubuntu6
+Replaces: mkisofs
+Provides: mkisofs
+Depends: libc6 (>= 2.7-1), libmagic1, zlib1g (>= 1:1.2.3.3.dfsg-1)
+Suggests: cdrkit-doc, wodim
+Conflicts: mkhybrid, mkisofs (<< 9:1.0)
+Description: Creates ISO-9660 CD-ROM filesystem images
+ genisoimage is a pre-mastering program for creating ISO-9660 CD-ROM
+ filesystem images, which can then be written to CD or DVD media using
+ the wodim program. genisoimage includes support for making bootable
+ "El Torito" CDs, as well as CDs with support for the
+ Macintosh HFS filesystem.
+ .
+ The package also includes extra tools useful for working with ISO images:
+  * mkzftree - create ISO-9660 image with compressed contents
+  * dirsplit - easily separate large directory contents into disks of
+    predefined size
+  * geteltorito - extract an El Torito boot image from a CD image
+ .
+ Please install cdrkit-doc if you want most of the documentation and
+ README files.
+Original-Maintainer: Joerg Jaspert <joerg@xxxxxxxxxx>
+
+Package: sed
+Essential: yes
+Status: install ok installed
+Priority: required
+Section: utils
+Installed-Size: 928
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 4.1.5-5
+Replaces: ssed (<< 3.59)
+Pre-Depends: libc6 (>= 2.6.1-1)
+Description: The GNU sed stream editor
+ sed reads the specified files or the standard input if no
+ files are specified, makes editing changes according to a
+ list of commands, and writes the results to the standard
+ output.
+Original-Maintainer: Clint Adams <schizo@xxxxxxxxxx>
+
+Package: libperl5.8
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 1188
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: perl
+Version: 5.8.8-12
+Replaces: perl-base (<= 5.8.7-4)
+Depends: libc6 (>= 2.6.1-1), perl-base (= 5.8.8-12)
+Conflicts: libapache-mod-perl (<< 1.29.0.1-3)
+Description: Shared Perl library
+ This package is required by programs which embed a Perl interpreter to
+ ensure that the correct version of `perl-base' is installed.  It
+ additionally contains the shared Perl library on architectures where the
+ perl binary is linked to libperl.a (currently only i386, for performance
+ reasons).  In other cases the actual library is in the `perl-base' package.
+Original-Maintainer: Brendan O'Dea <bod@xxxxxxxxxx>
+
+Package: libidn11
+Status: install ok installed
+Priority: standard
+Section: libs
+Installed-Size: 296
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: libidn
+Version: 1.1-1
+Replaces: libidn11-dev
+Depends: libc6 (>= 2.6.1-1)
+Conflicts: libidn9-dev
+Description: GNU libidn library, implementation of IETF IDN specifications
+ GNU Libidn is an implementation of the Stringprep, Punycode and IDNA
+ specifications defined by the IETF Internationalized Domain Names
+ (IDN) working group, used for internationalized domain names.
+ Currently the Nameprep, Kerberos 5 and XMPP Stringprep profiles are
+ supported.
+ .
+  Homepage: http://www.gnu.org/software/libidn/
+Original-Maintainer: Anibal Monsalve Salazar <anibal@xxxxxxxxxx>
+
+Package: libtheora0
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 348
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: libtheora
+Version: 1.0~beta2-2
+Depends: libc6 (>= 2.6.1-1), libogg0 (>= 1.1.3)
+Description: The Theora Video Compression Codec
+ Theora is an open video codec being developed by the Xiph.org
+ Foundation as part of their Ogg project (It is a project that aims to
+ integrate On2's VP3 video codec, Ogg Vorbis audio codec and Ogg
+ multimedia container formats into a multimedia solution that can
+ compete with MPEG-4 format).  Theora is derived directly from On2's
+ VP3 codec; currently the two are nearly identical, varying only in
+ framing headers, but Theora will diverge and improve from the main
+ VP3 development lineage as time progresses.
+Original-Maintainer: Debian Xiph.org Maintainers <pkg-xiph-maint@xxxxxxxxxxxxxxxxxxxxxxx>
+
+Package: libatm1
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 128
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: linux-atm
+Version: 2.4.1-17.1build1
+Depends: libc6 (>= 2.6-1)
+Conflicts: atm-tools (<< 2.4.1-6)
+Description: shared library for ATM (Asynchronous Transfer Mode)
+ Shared libraries needed by ATM (Asynchronous Transfer Mode) related programs
+ .
+ Homepage: http://linux-atm.sourceforge.net/
+Original-Maintainer: Peter De Schrijver (p2) <p2@xxxxxxx>
+
+Package: hdparm
+Status: install ok installed
+Priority: optional
+Section: admin
+Installed-Size: 244
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 8.6-1ubuntu1
+Replaces: apmd (<= 3.0.2-1.15)
+Depends: libc6 (>= 2.7-1)
+Suggests: apmd
+Conffiles:
+ /etc/udev/rules.d/85-hdparm.rules ffa5a66b97506d945d416f92bcfc719c
+ /etc/apm/event.d/20hdparm 69c0a826b29c8f40b7ca5e56e53d7f83
+ /etc/hdparm.conf b814a3a4923c5d0478dec20628f2cea1
+Description: tune hard disk parameters for high performance
+ Get/set hard disk parameters for Linux IDE drives.
+ Primary use is for enabling irq-unmasking and IDE multiplemode.
+Original-Maintainer: Stephen Gran <sgran@xxxxxxxxxx>
+
+Package: gimp-help-common
+Status: install ok installed
+Priority: optional
+Section: doc
+Installed-Size: 27080
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: all
+Source: gimp-help
+Version: 2.4.0-2
+Description: Data files for the GIMP documentation
+ This package contains necessary files common to all GIMP help
+ packages, such as graphics and screenshots.
+Original-Maintainer: Ari Pollak <ari@xxxxxxxxxx>
+
+Package: scim-modules-socket
+Status: install ok installed
+Priority: optional
+Section: utils
+Installed-Size: 268
+Maintainer: Ubuntu Core developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: scim
+Version: 1.4.7-3ubuntu8
+Replaces: scim-config-socket, scim-frontend-socket, scim-server-socket
+Provides: scim-config-socket, scim-frontend-socket, scim-server-socket
+Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1-21), libscim8c2a (>= 1.4.6), libstdc++6 (>= 4.1.1-21)
+Conflicts: scim-config-socket, scim-frontend-socket, scim-server-socket
+Enhances: scim
+Description: socket modules for SCIM platform
+ SCIM (Smart Common Input Method) is an input method (IM) platform.
+ .
+ This package provides the socket modules for SCIM.  SCIM can use a local or
+ inet socket as the front end and connect to the configuration and IM engine
+ modules.  Then other computers and/or environments can share these input
+ methods by connecting to the socket with socket IM engine module and socket
+ configure module.
+ .
+ For more information about SCIM, please see the description of scim package.
+Homepage: http://www.scim-im.org/
+Original-Maintainer: Ming Hua <minghua@xxxxxxxx>
+
+Package: tcpdump
+Status: install ok installed
+Priority: optional
+Section: net
+Installed-Size: 664
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 3.9.8-2
+Depends: libc6 (>= 2.6.1-1), libpcap0.8 (>= 0.9.3-1), libssl0.9.8 (>= 0.9.8e-1)
+Description: A powerful tool for network monitoring and data acquisition
+ This program allows you to dump the traffic on a network. tcpdump
+ is able to examine IPv4, ICMPv4, IPv6, ICMPv6, UDP, TCP, SNMP, AFS
+ BGP, RIP, PIM, DVMRP, IGMP, SMB, OSPF, NFS and many other packet
+ types.
+ .
+ It can be used to print out the headers of packets on a network
+ interface, filter packets that match a certain expression. You can
+ use this tool to track down network problems, to detect "ping attacks"
+ or to monitor network activities.
+Original-Maintainer: Romain Francoise <rfrancoise@xxxxxxxxxx>
+
+Package: libpulse0
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 440
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: pulseaudio
+Version: 0.9.10-1ubuntu1
+Depends: libc6 (>= 2.4), libcap1, libice6 (>= 1:1.0.0), libsm6, libx11-6
+Suggests: pulseaudio
+Conffiles:
+ /etc/pulse/client.conf cc7f675ee302c4ba9f8a973e85bcfed1
+Description: PulseAudio client libraries
+ PulseAudio, previously known as Polypaudio, is a sound server for POSIX and
+ WIN32 systems. It is a drop in replacement for the ESD sound server with
+ much better latency, mixing/re-sampling quality and overall architecture.
+ .
+ Client libraries used by applications that access a PulseAudio sound server
+ via PulseAudio's native interface.
+Homepage: http://www.pulseaudio.org
+Original-Maintainer: CJ van den Berg <cj@xxxxxxxxxxxxx>
+
+Package: libgtk2.0-common
+Status: install ok installed
+Priority: optional
+Section: misc
+Installed-Size: 17008
+Maintainer: Ubuntu Desktop Team <ubuntu-desktop@xxxxxxxxxxxxxxxx>
+Architecture: all
+Source: gtk+2.0
+Version: 2.12.9-3ubuntu4
+Replaces: libgtk1.3-common, libgtk2.0-data
+Recommends: libgtk2.0-0
+Conflicts: libgtk1.3-common, libgtk2.0-data
+Description: Common files for the GTK+ graphical user interface library
+ The GTK+ is a multi-platform toolkit for creating graphical user
+ interfaces. Offering a complete set of widgets, the GTK+ is suitable
+ for projects ranging from small one-off tools to complete application
+ suites.
+ .
+ This package contains the common files which the libraries need.
+Original-Maintainer: Sebastien Bacher <seb128@xxxxxxxxxx>
+
+Package: xserver-xorg-video-tdfx
+Status: install ok installed
+Priority: optional
+Section: x11
+Installed-Size: 160
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 1:1.3.0-6
+Replaces: xserver-xorg (<< 6.8.2-35), xserver-xorg-driver-tdfx
+Provides: xserver-xorg-video-2
+Depends: libc6 (>= 2.6.1-1), xserver-xorg-core (>= 2:1.4)
+Conflicts: xserver-xorg-driver-tdfx
+Description: X.Org X server -- tdfx display driver
+ This package provides the driver for 3dfx Voodoo video cards and their
+ derivatives.
+ .
+ More information about X.Org can be found at:
+ <URL:http://www.X.org>
+ <URL:http://xorg.freedesktop.org>
+ <URL:http://lists.freedesktop.org/mailman/listinfo/xorg>
+ .
+ This package is built from the X.org xf86-video-tdfx driver module.
+Original-Maintainer: Debian X Strike Force <debian-x@xxxxxxxxxxxxxxxx>
+
+Package: ntfsprogs
+Status: install ok installed
+Priority: optional
+Section: otherosfs
+Installed-Size: 672
+Maintainer: Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: linux-ntfs
+Version: 2.0.0-1ubuntu2
+Depends: fuse-utils (>> 2.5.0), libc6 (>= 2.7-1), libfuse2 (>= 2.6), libntfs10 (>= 2.0.0), libuuid1
+Description: tools for doing neat things in NTFS partitions from Linux
+ The Linux-NTFS project (http://www.linux-ntfs.org/) aims to bring full
+ support for the NTFS filesystem to the Linux operating system.
+ .
+ This is a set of tools targeted for people interested in working
+ with the NTFS support in the Linux kernel and using it.  The
+ following utilities are included:
+ .
+ ntfsfix - Fix common filesystem errors and force Windows to check NTFS.
+ .
+ mkntfs - Format a partition with an NTFS filesystem, optionally bootable.
+ .
+ ntfsinfo - Show some information about an NTFS partition or one of the
+ files or directories within it.
+ .
+ ntfslabel - Show, or set, an NTFS partition's volume label.
+ .
+ ntfsresize - Resize an NTFS partition without losing data.
+ .
+ ntfsundelete - Recover deleted files from an NTFS partition.
+ .
+ ntfscluster - Locate the owner of any given sector or cluster on an NTFS
+ partition.
+ .
+ ntfscat - Concatenate files and print them on the standard output
+ (without mounting the partition).
+ .
+ ntfsls - List directory contents on an NTFS filesystem (without
+ mounting).
+ .
+ ntfscp - Overwrite files on an NTFS partition.
+ .
+ ntfsclone - Efficiently clone an NTFS filesystem or a part of it.
+ .
+ ntfsmount - Mount an NTFS partition from user-space using libntfs and FUSE.
+ .
+ ntfsdecrypt - Decrypt NTFS-encrypted files (NOT INCLUDED).
+ .
+ ntfscmp - Compare two NTFS volumes and tell the differences.
+Original-Maintainer: David Martínez Moreno <ender@xxxxxxxxxx
+
+Package: lshw
+Status: install ok installed
+Priority: optional
+Section: utils
+Installed-Size: 856
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 02.12.01-2ubuntu1.1
+Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1-21), libstdc++6 (>= 4.2.1-4), pciutils, usbutils
+Description: information about hardware configuration
+ A small tool to provide detailed information on the hardware
+ configuration of the machine. It can report exact memory
+ configuration, firmware version, mainboard configuration, CPU version
+ and speed, cache configuration, bus speed, etc. on DMI-capable x86
+ systems, on some PowerPC machines (PowerMac G4 is known to work) and AMD64.
+ .
+ Information can be output in plain text, HTML or XML.
+Original-Maintainer: Ghe Rivero <ghe@xxxxxxxxxx>
+
+Package: libtiff4
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 408
+Maintainer: Ubuntu Core developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: tiff
+Version: 3.8.2-7ubuntu3
+Depends: libc6 (>= 2.7-1), libjpeg62, zlib1g (>= 1:1.2.3.3.dfsg-1)
+Description: Tag Image File Format (TIFF) library
+ libtiff is a library providing support for the Tag Image File Format
+ (TIFF), a widely used format for storing image data.  This package
+ includes the shared library.
+Original-Maintainer: Jay Berkenbilt <qjb@xxxxxxxxxx>
+
+Package: libaudiofile0
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 232
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: audiofile
+Version: 0.2.6-7ubuntu1
+Depends: libc6 (>= 2.6.1-1)
+Description: Open-source version of SGI's audiofile library
+ The audiofile library allows the processing of audio data to and from audio
+ files of many common formats (currently AIFF, AIFF-C, WAVE, NeXT/Sun, BICS,
+ and raw data).
+ .
+ This package contains the library needed to run executables using
+ libaudiofile.
+Original-Maintainer: Daniel Kobras <kobras@xxxxxxxxxx>
+
+Package: klibc-utils
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 452
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: klibc
+Version: 1.5.7-4ubuntu4
+Depends: libklibc (= 1.5.7-4ubuntu4)
+Description: small statically-linked utilities built with klibc
+ This package contains a collection of programs that are statically
+ linked against klibc.  These duplicate some of the functionality of a
+ regular Linux toolset, but are typically much smaller than their
+ full-function counterparts.  They are intended for inclusion in
+ initramfs images and embedded systems.
+Original-Maintainer: maximilian attems <maks@xxxxxxxxxx>
+
+Package: mdetect
+Status: install ok installed
+Priority: optional
+Section: utils
+Installed-Size: 88
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 0.5.2.1ubuntu4
+Depends: libc6 (>= 2.4)
+Description: mouse device autodetection tool
+ mdetect is a tool for autoconfiguring mice; it is typically used as the
+ backend to some user-friendly frontend code.  mdetect writes the autodetected
+ mouse device and protocol (as used by gpm) to standard output.  It can be
+ invoked so as to produce output appropriate for XFree86 X server
+ configuration files.
+ .
+ vmmouse_detect is a tool for detecting if the system is running under a
+ vmware instance and vmmouse is in use.
+Original-Maintainer: Branden Robinson <branden@xxxxxxxxxx>
+
+Package: splix
+Status: install ok installed
+Priority: optional
+Section: text
+Installed-Size: 1732
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 1.1.1-0ubuntu1
+Depends: libc6 (>= 2.7-1), libcupsimage2 (>= 1.3.0), libcupsys2 (>= 1.3.4), libgcc1 (>= 1:4.1.1-21), libstdc++6 (>= 4.1.1-21)
+Description: Driver for Samsung's SPL2 (bw) and SPLc (color) laser printers
+ Support for printing to SPL2- and SPLc-based printers. These are most
+ of the cheaper Samsung laser printers which do not understand standard
+ languages like PostScript or PCL. Both monochrome (ML-15xx, ML-16xx,
+ ML-17xx, ML-2xxx) and color (CLP-5xx, CLP-6xx) models are supported.
+ Also some rebranded Samsungs like the Xerox Phaser 6100 work with this
+ driver.
+ .
+ Note that older SPL1-based models (ML-12xx, ML-14xx) do not work. Use
+ these printers with the older "gdi" driver which is built into ESP
+ GhostScript.
+ .
+ Home Page: http://splix.ap2c.org/
+Original-Maintainer: Till Kamppeter <till.kamppeter@xxxxxxxxx>
+
+Package: e2fslibs
+Status: install ok installed
+Priority: required
+Section: libs
+Installed-Size: 240
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: e2fsprogs
+Version: 1.40.8-2ubuntu2
+Replaces: e2fsprogs (<< 1.34-1)
+Provides: libe2p2, libext2fs2
+Depends: libc6 (>= 2.7-1)
+Description: ext2 filesystem libraries
+ The ext2fs and e2p libraries are used by programs that directly access
+ EXT2 filesystems from usermode programs.   The EXT2 filesystem is very often
+ used as the default filesystem on Linux systems.   Various system programs
+ that use libext2fs include e2fsck, mke2fs, tune2fs, etc.  Programs that use
+ libe2p include dumpe2fs, chattr, and lsattr.
+Original-Maintainer: Theodore Y. Ts'o <tytso@xxxxxxx>
+
+Package: xfonts-scalable
+Status: install ok installed
+Priority: optional
+Section: x11
+Installed-Size: 620
+Maintainer: Ubuntu Core Developers <ubuntu-devel@xxxxxxxxxxxxxxxx>
+Architecture: all
+Version: 1:1.0.0-6
+Depends: xfonts-utils
+Suggests: xfs | xserver
+Conflicts: xfntscl
+Conffiles:
+ /etc/X11/fonts/Type1/xfonts-scalable.scale b579d5c7759383647c486da590d60815
+Description: scalable fonts for X
+ xfonts-scalable provides fonts that can be drawn at any size by the X server
+ or font server without loss of quality.  In most cases it is desirable to
+ have the X font server (xfs) and/or an X server installed to make the fonts
+ available to X clients.
+ .
+ This package is missing three fonts from the X.Org source archives
+ because the license terms on the fonts do not meet the Debian Free
+ Software Guidelines; they are the Type1 fonts Adobe Utopia, IBM Courier,
+ and Bigelow & Holmes (B&H) Luxi.
+ .
+ This package requires the xutils package to prepare the font directories
+ for use by an X server or X font server.
+Original-Maintainer: Debian X Strike Force <debian-x@xxxxxxxxxxxxxxxx>
+
+Package: ttf-unfonts-core
+Status: install ok installed
+Priority: optional
+Section: x11
+Installed-Size: 12572
+Maintainer: Ubuntu MOTU Developers <ubuntu-motu@xxxxxxxxxxxxxxxx>
+Architecture: all
+Source: ttf-unfonts
+Version: 1.0.1-6ubuntu1
+Replaces: ttf-unfonts (<< 1.0.1-6ubuntu1)
+Depends: defoma
+Conflicts: ttf-unfonts (<< 1.0.1-6ubuntu1)
+Conffiles:
+ /etc/defoma/hints/ttf-unfonts-core.hints cf6fed7c01b08fb46bb0a44e69481532
+Description: Un series Korean TrueType fonts
+ This is a set of Korean TrueType fonts.  These fonts were made from
+ the HLaTeX's PostScript fonts and modified slightly.
+ .
+ This package only includes the UnBatang and UnDotum fonts. For additional
+ fonts, please install the -extra package.
+Original-Maintainer: Changwoo Ryu <cwryu@xxxxxxxxxx>
+
+Package: radeontool
+Status: install ok installed
+Priority: optional
+Section: utils
+Installed-Size: 72
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 1.5-5build1
+Depends: libc6 (>= 2.5-0ubuntu1)
+Description: utility to control ATI Radeon backlight functions on laptops
+ Radeontool is a small utility to control ATI Radeon based laptops' backlight
+ and external output functions.
+ .
+ WARNING: Radeontool code has not been completely audited and may contain bugs
+ that could damage your hardware. Use at your own risk.
+Original-Maintainer: Luigi Gangitano <luigi@xxxxxxxxxx>
+
+Package: xfonts-100dpi
+Status: install ok installed
+Priority: optional
+Section: x11
+Installed-Size: 4896
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: all
+Version: 1:1.0.0-4
+Depends: xfonts-utils (>= 1:1.0.0-6)
+Suggests: xfs | xserver
+Conffiles:
+ /etc/X11/fonts/100dpi/xfonts-100dpi.alias 85bebd6ca213aa656c301a72eb4397cb
+Description: 100 dpi fonts for X
+ xfonts-100dpi provides a set of bitmapped fonts at 100 dots per inch.  In
+ most cases it is desirable to have the X font server (xfs) and/or an X server
+ installed to make the fonts available to X clients.
+ .
+ This package contains only fonts in the ISO 10646-1 and ISO 8859-1
+ encodings, to conserve disk space.  For other encodings, see the
+ xfonts-100dpi-transcoded package.
+ .
+ This package and xfonts-75dpi provide the same set of fonts, rendered at
+ different resolutions; only one or the other is necessary, but both may be
+ installed.  xfonts-100dpi may be more suitable for large monitors and/or
+ large screen resolutions (over 1024x768).
+ .
+ This package requires the xfonts-utils package to prepare the font
+ directories for use by an X server or X font server.
+Original-Maintainer: Debian X Strike Force <debian-x@xxxxxxxxxxxxxxxx>
+
+Package: dictionaries-common
+Status: install ok installed
+Priority: standard
+Section: text
+Installed-Size: 940
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: all
+Version: 0.90.0ubuntu2
+Replaces: openoffice.org-updatedicts
+Provides: openoffice.org-updatedicts
+Depends: debconf (>= 0.5) | debconf-2.0, libtext-iconv-perl, perl-base (>= 5.6.0-16)
+Suggests: emacsen-common, ispell, jed-extra
+Conflicts: iamerican (<= 3.1.20.0-1), ibrazilian (<< 2.4-5.1), ibritish (<= 3.1.20.0-1), ibulgarian (<= 2.0-2), icatalan (<= 0.1-4), iczech (<= 20020628-1), idanish (<< 1.4.22-2.1), idutch (<= 1:0.1e-20), iesperanto (<< 2.1.2000.02.25-6), ifaroese (<= 0.1.16-2), ifinnish (<< 0.7-3.4), ifinnish-large (<< 0.7-3.4), ifinnish-small (<< 0.7-3.4), ifrench (<= 1.4-13), ifrench-gut (<= 1:1.0-9), igerman, ihungarian (<= 0.84-1), iitalian (<< 2.20-1.2), ingerman (<< 20010414-2), inorwegian (<< 2.0-6.1), ipolish (<< 20011004-2.1), iportuguese (<< 19980611-8), irussian (<= 0.99f0-1), ispanish (<< 1.7-5), ispell (<= 3.1.20.0-1), ispell-ga, iswedish (<= 1.4.2), miscfiles (<< 1.3-2.1), openoffice.org-updatedicts, wbritish (<= 3.1.20.0-1), wbulgarian (<= 2.0-2), wcatalan (<= 0.1-4), wdanish (<< 1.4.22-2.1), wdutch (<= 1:0.1e-20), wenglish (<= 2.0-2), wfaroese (<= 0.1.16-2), wfinnish (<< 0.7-3.4), wfrench (<= 1.0-11), wgerman, witalian (<= 1.6), wngerman (<< 20010414-2), wnorwegian (<< 2.0-6.1), wpolish (<< 20011004-2.1), wspanish (<= 1.0.11.1), wswedish (<= 1.4.2)
+Conffiles:
+ /etc/emacs/site-start.d/50dictionaries-common.el 10e29319f5c7cda2f219b7282d513311
+Description: Common utilities for spelling dictionary tools
+ These are utilities shared by all ispell, myspell and wordlist
+ dictionaries,  including support for some tools that use ispell
+ (like emacsen, jed and mutt). More info about naming conventions and
+ availability of those dictionaries in the README file.
+ .
+ Maintainers should install dictionaries-common-dev as well, and read its
+ documentation.
+Original-Maintainer: Agustin Martin Domingo <agmartin@xxxxxxxxxx>
+
+Package: libgs8
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 6868
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: ghostscript
+Version: 8.61.dfsg.1-1ubuntu3
+Depends: libc6 (>= 2.4), libcomerr2 (>= 1.33-3), libcupsimage2 (>= 1.3.0), libcupsys2 (>= 1.3.4), libfontconfig1 (>= 2.4.0), libgnutls13 (>= 2.0.4-0), libjpeg62, libkrb53 (>= 1.6.dfsg.2), libpaper1, libpng12-0 (>= 1.2.13-4), libstdc++6, libtiff4, zlib1g (>= 1:1.2.3.3.dfsg-1)
+Description: The Ghostscript PostScript/PDF interpreter Library
+ Ghostscript is used for PostScript/PDF preview and printing.  Usually as
+ a back-end to a program such as ghostview, it can display PostScript and PDF
+ documents in an X11 environment.
+ .
+ The Ghostscript home page is at http://www.ghostscript.com/
+ .
+ This package provides the Ghostscript library which makes the
+ facilities of Ghostscript available to applications.
+Original-Maintainer: Masayuki Hatta (mhatta) <mhatta@xxxxxxxxxx>
+
+Package: cupsys-client
+Status: install ok installed
+Priority: optional
+Section: net
+Installed-Size: 304
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: cupsys
+Version: 1.3.7-1ubuntu3
+Replaces: cupsys (<= 1.1.18-3)
+Depends: adduser, cupsys-common, libc6 (>= 2.4), libcupsimage2 (>= 1.3.0), libcupsys2 (>= 1.3.4), zlib1g (>= 1:1.2.3.3.dfsg-1)
+Suggests: cupsys, cupsys-bsd, cupsys-pt, gtklp, kdeprint, xpp
+Conflicts: lprng
+Description: Common UNIX Printing System(tm) - client programs (SysV)
+ The Common UNIX Printing System (or CUPS(tm)) is a printing system and
+ general replacement for lpd and the like.  It supports the Internet
+ Printing Protocol (IPP), and has its own filtering driver model for
+ handling various document types.
+ .
+ This package provides the System V style print client programs.
+ .
+ The terms "Common UNIX Printing System" and "CUPS" are trademarks of
+ Easy Software Products (www.easysw.com), and refer to the original
+ source packages from which these packages are made.
+Original-Maintainer: Debian CUPS Maintainers <pkg-cups-devel@xxxxxxxxxxxxxxxxxxxxxxx>
+
+Package: samba-common
+Status: install ok installed
+Priority: optional
+Section: net
+Installed-Size: 6780
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: samba
+Version: 3.0.28a-1ubuntu4.4
+Replaces: samba (<< 3.0.20b-1)
+Depends: debconf (>= 0.5) | debconf-2.0, libc6 (>= 2.4), libcomerr2 (>= 1.33-3), libkrb53 (>= 1.6.dfsg.2), libldap-2.4-2 (>= 2.4.7), libncurses5 (>= 5.6+20071006-3), libpam-modules, libpopt0 (>= 1.10), libreadline5 (>= 5.2), libuuid1, ucf
+Conffiles:
+ /etc/samba/gdbcommands 898c523d1c11feeac45538a65d00c838
+ /etc/dhcp3/dhclient-enter-hooks.d/samba f579105188ca98a211cb7e8c28a88be3
+ /etc/pam.d/samba ff2488324854f7b1e892bb0df062d5f0
+Description: Samba common files used by both the server and the client
+ The Samba software suite is a collection of programs that
+ implements the SMB/CIFS protocol for unix systems, allowing you to serve
+ files and printers to Windows, NT, OS/2 and DOS clients. This protocol
+ is sometimes also referred to as the LanManager or NetBIOS protocol.
+ .
+ This package contains the common files that are used by both the server
+ (provided in the samba package) and the client (provided in the smbclient
+ package).
+Original-Maintainer: Debian Samba Maintainers <pkg-samba-maint@xxxxxxxxxxxxxxxxxxxxxxx>
+
+Package: startup-tasks
+Status: install ok installed
+Priority: required
+Section: base
+Installed-Size: 32
+Maintainer: Scott James Remnant <scott@xxxxxxxxxx>
+Architecture: i386
+Source: upstart
+Version: 0.3.9-2
+Depends: upstart (>= 0.2.0)
+Description: definitions of essential tasks to run on startup
+ This package contains the definitions of tasks essential for normal
+ startup of a Linux system.
+
+Package: wget
+Status: install ok installed
+Priority: important
+Section: web
+Installed-Size: 1924
+Maintainer: Ubuntu Core developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 1.10.2-3ubuntu1
+Depends: libc6 (>= 2.5-5), libssl0.9.8 (>= 0.9.8e-1)
+Conflicts: wget-ssl
+Conffiles:
+ /etc/wgetrc eeb265c23bdeb037d384e2da9ccb82a2
+Description: retrieves files from the web
+ Wget is a network utility to retrieve files from the Web
+ using http(s) and ftp, the two most widely used Internet
+ protocols. It works non-interactively, so it will work in
+ the background, after having logged off. The program supports
+ recursive retrieval of web-authoring pages as well as ftp
+ sites -- you can use wget to make mirrors of archives and
+ home pages or to travel the Web like a WWW robot.
+ .
+ Wget works particularly well with slow or unstable connections
+ by continuing to retrieve a document until the document is fully
+ downloaded. Re-getting files from where it left off works on
+ servers (both http and ftp) that support it. Both http and ftp
+ retrievals can be time stamped, so wget can see if the remote
+ file has changed since the last retrieval and automatically
+ retrieve the new version if it has.
+ .
+ Wget supports proxy servers; this can lighten the network load,
+ speed up retrieval, and provide access behind firewalls.
+ .
+ http://www.gnu.org/software/wget/
+Original-Maintainer: Noèl Köthe <noel@xxxxxxxxxx>
+
+Package: libgl1-mesa-glx
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 476
+Maintainer: Ubuntu Core Developers <ubuntu-devel@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: mesa
+Version: 7.0.3~rc2-1ubuntu3
+Replaces: libgl1, libgl1-mesa-dri (<< 6.4.0)
+Provides: libgl1
+Depends: libc6 (>= 2.4), libdrm2 (>= 2.3.0), libx11-6, libxdamage1 (>= 1:1.1), libxext6, libxfixes3 (>= 1:4.0.1), libxxf86vm1
+Conflicts: libgl1, libgl1-mesa-dri (<< 6.4.0)
+Description: A free implementation of the OpenGL API -- GLX runtime
+ This version of Mesa provides GLX and DRI capabilities: it is capable of
+ both direct and indirect rendering.  For direct rendering, it can use DRI
+ modules from the libgl1-mesa-dri package to accelerate drawing.
+ .
+ This package does not include the modules themselves: these can be found
+ in the libgl1-mesa-dri package.
+ .
+ For a complete description of Mesa, please look at the
+ libgl1-mesa-swx11 package.
+Homepage: http://mesa3d.sourceforge.net/
+Original-Maintainer: Debian X Strike Force <debian-x@xxxxxxxxxxxxxxxx>
+
+Package: x11-utils
+Status: install ok installed
+Priority: optional
+Section: x11
+Installed-Size: 564
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 7.3+1
+Replaces: xbase-clients (<= 1:7.2.ds2-3), xutils (<= 1:7.1.ds.3-1), appres, editres, listres, luit, viewres, xdpyinfo, xdriinfo, xev, xfd, xfontsel, xkill, xlsatoms, xlsclients, xlsfonts, xmessage, xprop, xvinfo, xwininfo
+Depends: libc6 (>= 2.6.1-1), libfontconfig1 (>= 2.4.0), libfontenc1, libfreetype6 (>= 2.3.5), libgl1-mesa-glx | libgl1, libice6 (>= 1:1.0.0), libsm6, libx11-6, libxaw7, libxext6, libxft2 (>> 2.1.1), libxi6, libxinerama1, libxmu6, libxmuu1, libxrender1, libxt6, libxtst6, libxv1, libxxf86dga1, libxxf86vm1, zlib1g (>= 1:1.2.3.3.dfsg-1), cpp
+Pre-Depends: x11-common (>= 1:7.0.0)
+Suggests: mesa-utils
+Conflicts: appres, editres, listres, luit, viewres, xdpyinfo, xdriinfo, xev, xfd, xfontsel, xkill, xlsatoms, xlsclients, xlsfonts, xmessage, xprop, xvinfo, xwininfo
+Conffiles:
+ /etc/X11/app-defaults/Editres 04c860eb13ac3a4e8d74ebebcf3da76c
+ /etc/X11/app-defaults/Editres-color f16b07f1caf85b42cd40355e23d927a0
+ /etc/X11/app-defaults/Viewres 4f77da598593ff07cda9d2d147a07772
+ /etc/X11/app-defaults/Xfd 5cee09dc86e1dc14c19492b6b866d17c
+ /etc/X11/app-defaults/XFontSel d917f63ef27294544ab192a3e33e30df
+ /etc/X11/app-defaults/Xmessage eed84b35dde8b18e7dcfc80e75c1da67
+ /etc/X11/app-defaults/Xmessage-color ca383db9e4e9648bda0952ad6b8a2115
+Description: X11 utilities
+ An X client is a program that interfaces with an X server (almost always via
+ the X libraries), and thus with some input and output hardware like a
+ graphics card, monitor, keyboard, and pointing device (such as a mouse).
+ .
+ This package provides a miscellaneous assortment of X utilities
+ that ship with the X Window System, including:
+  - appres, editres, listres and viewres, which query the X resource database;
+  - luit, a filter that can be run between an arbitrary application and a
+    UTF-8 terminal emulator;
+  - xdpyinfo, a display information utility for X;
+  - xdriinfo, query configuration information of DRI drivers;
+  - xev, an X event displayer;
+  - xfd, a tool that displays all the glyphs in a given X font;
+  - xfontsel, a tool for browsing and selecting X fonts;
+  - xkill, a tool for terminating misbehaving X clients;
+  - xlsatoms, which lists interned atoms defined on an X server;
+  - xlsclients, which lists client applications running on an X display;
+  - xlsfonts, a server font list displayer;
+  - xmessage, a tool to display message or dialog boxes;
+  - xprop, a property displayer for X;
+  - xvinfo, an Xv extension information utility for X;
+  - xwininfo, a window information utility for X;
+ .
+ The editres and viewres programs use bitmap images provided by the
+ xbitmaps package. The luit program requires locale information from
+ the libx11-data package.
+Original-Maintainer: Debian X Strike Force <debian-x@xxxxxxxxxxxxxxxx>
+
+Package: base-passwd
+Essential: yes
+Status: install ok installed
+Priority: required
+Section: admin
+Installed-Size: 168
+Maintainer: Colin Watson <cjwatson@xxxxxxxxxx>
+Architecture: i386
+Version: 3.5.16
+Replaces: base
+Depends: libc6 (>= 2.6.1-1)
+Description: Debian base system master password and group files
+ These are the canonical master copies of the user database files
+ (/etc/passwd and /etc/group), containing the Debian-allocated user and
+ group IDs. The update-passwd tool is provided to keep the system databases
+ synchronized with these master files.
+
+Package: uuid-runtime
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 124
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: e2fsprogs
+Version: 1.40.8-2ubuntu2
+Replaces: e2fsprogs (<= 1.40.3-1ubuntu1)
+Depends: libc6 (>= 2.7-1), libuuid1 (>> 1.40.3-1), passwd
+Description: universally unique id library
+ libuuid generates and parses 128-bit universally unique id's (UUID's).
+ See RFC 4122 for more information.
+ .
+ This package contains the uuidd daemon which is used by libuuid as well as
+ the uuidgen program.
+Original-Maintainer: Theodore Y. Ts'o <tytso@xxxxxxx>
+
+Package: at
+Status: install ok installed
+Priority: important
+Section: admin
+Installed-Size: 208
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 3.1.10ubuntu4
+Depends: libc6 (>= 2.5-0ubuntu1), libpam0g (>= 0.76), lsb-base (>= 3.0-10), sysv-rc (>= 2.86.ds1-14.1ubuntu2)
+Recommends: postfix | mail-transport-agent
+Conffiles:
+ /etc/at.deny 8cb7e7632119dc26115436938efd2522
+ /etc/init.d/atd 3260b46931fd3f3fd9b620251fb4c5e3
+ /etc/pam.d/atd 3e3f1dbea6cfd719c5a27c1ebf8723d2
+Description: Delayed job execution and batch processing
+ At and batch read shell commands from standard input
+ storing them as a job to be scheduled for execution in the
+ future.
+ .
+ Use
+  at    to run the job at a specified time
+  batch to run the job when system load levels permit
+Original-Maintainer: Ryan Murray <rmurray@xxxxxxxxxx>
+
+Package: bind9-host
+Status: install ok installed
+Priority: standard
+Section: net
+Installed-Size: 128
+Maintainer: LaMont Jones <lamont@xxxxxxxxxx>
+Architecture: i386
+Source: bind9
+Version: 1:9.4.2-10
+Replaces: dnsutils (<< 1:9.0.0)
+Provides: host
+Depends: libbind9-30, libc6 (>= 2.4), libdns32, libisc32, libisccfg30, liblwres30, libssl0.9.8 (>= 0.9.8f-1)
+Conflicts: dnsutils (<< 1:9.0.0), host
+Description: Version of 'host' bundled with BIND 9.X
+ This package provides the 'host' program in the form that is bundled with
+ the BIND 9.X sources.  This version differs from the one provided in the
+ package called host, which is from NIKHEF, and has a similar but different
+ set of features/options.
+
+Package: consolekit
+Status: install ok installed
+Priority: optional
+Section: admin
+Installed-Size: 348
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 0.2.3-3ubuntu5
+Depends: dbus (>= 1.1.2), libc6 (>= 2.7-1), libck-connector0, libdbus-1-3 (>= 1.1.1), libdbus-glib-1-2 (>= 0.74), libglib2.0-0 (>= 2.16.0), libx11-6
+Recommends: libpam-ck-connector
+Conffiles:
+ /etc/dbus-1/system.d/ConsoleKit.conf 671d6715c028d88751a7fd43f008843d
+ /etc/ConsoleKit/seats.d/00-primary.seat eb3f3c54b501dbdaf38dbc38a4ee91fe
+ /etc/X11/Xsession.d/90-console-kit 7d0ebafabbbf8fa9bedc1cf49c0b3de2
+Description: framework for defining and tracking users, sessions and seats
+ ConsoleKit is a system daemon for tracking what users are logged
+ into the system and how they interact with the computer (e.g.
+ which keyboard and mouse they use).
+ .
+ It provides asynchronous notification via the system message bus.
+ .
+ This package provides the system daemon and tools to interact with it.
+Homepage: http://www.freedesktop.org/wiki/Software/ConsoleKit
+Original-Maintainer: Utopia Maintenance Team <pkg-utopia-maintainers@xxxxxxxxxxxxxxxxxxxxxxx>
+
+Package: librsvg2-2
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 272
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: librsvg
+Version: 2.22.2-2
+Depends: libc6 (>= 2.7-1), libcairo2 (>= 1.5.12), libcroco3 (>= 0.6.1), libfontconfig1 (>= 2.4.0), libfreetype6 (>= 2.3.5), libglib2.0-0 (>= 2.16.0), libgsf-1-114 (>= 1.14.7), libgtk2.0-0 (>= 2.12.0), libpango1.0-0 (>= 1.20.0), libxml2 (>= 2.6.27)
+Suggests: librsvg2-bin
+Conflicts: librsvg2-common (<< 2.12)
+Description: SAX-based renderer library for SVG files (runtime)
+ The rsvg library is an efficient renderer for Scalable Vector Graphics
+ (SVG) pictures.
+ .
+ This package contains the runtime library, necessary to run
+ applications using librsvg.
+Original-Maintainer: Josselin Mouette <joss@xxxxxxxxxx>
+
+Package: libpaper-utils
+Status: install ok installed
+Priority: optional
+Section: utils
+Installed-Size: 88
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: libpaper
+Version: 1.1.23
+Replaces: libpaperg (<< 1.1.9), libpaper1 (<< 1.1.10)
+Depends: libc6 (>= 2.6.1-1), libpaper1
+Description: library for handling paper characteristics (utilities)
+ The libpaper paper-handling library automates recognition of many
+ different paper types and sizes for programs that need to deal with
+ printed output.
+ .
+ This package contains utilities for setting the system's default
+ paper type and for accessing paper type information from shell
+ scripts.
+Original-Maintainer: Giuseppe Sacco <eppesuig@xxxxxxxxxx>
+
+Package: libcomerr2
+Status: install ok installed
+Priority: required
+Section: libs
+Installed-Size: 84
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: e2fsprogs
+Version: 1.40.8-2ubuntu2
+Replaces: e2fsprogs (<< 1.34-1)
+Provides: libcomerr-kth-compat
+Depends: libc6 (>= 2.7-1)
+Description: common error description library
+ libcomerr is an attempt to present a common error-handling mechanism to
+ manipulate the most common form of error code in a fashion that does not
+ have the problems identified with mechanisms commonly in use.
+Original-Maintainer: Theodore Y. Ts'o <tytso@xxxxxxx>
+
+Package: language-pack-en-base
+Status: install ok installed
+Priority: optional
+Section: translations
+Installed-Size: 2516
+Maintainer: Language pack maintainers <language-packs@xxxxxxxxxx>
+Architecture: all
+Version: 1:8.04+20080527
+Replaces: language-pack-en (<< 1:8.04+20080527), language-pack-en-base (<< 1:8.04+20080527), language-pack-gnome-en-base (<< 1:8.04+20080527), language-pack-kde-en-base (<< 1:8.04+20080527)
+Depends: language-pack-en (>= 1:8.04+20080527), locales (>= 2.3.6)
+Pre-Depends: dpkg (>= 1.10.27ubuntu1)
+Recommends: language-support-en
+Conflicts: language-pack-en (<< 1:8.04+20080527)
+Description: translations for language English
+ Translation data for all supported packages for:
+ English
+ .
+ This package provides the bulk of translation data and is updated
+ only seldom. language-pack-en provides frequent
+ translation updates, so you should install this as well.
+ .
+ Please note that you should install language-support-en
+ to get full support for this language (spell checkers, OpenOffice
+ locale packages, etc.).
+
+Package: libraw1394-8
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 100
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: libraw1394
+Version: 1.3.0-2
+Depends: makedev | udev, libc6 (>= 2.6.1-1)
+Suggests: libraw1394-doc
+Description: library for direct access to IEEE 1394 bus (aka FireWire)
+ libraw1394 is the only supported interface to the kernel side raw1394
+ of the Linux IEEE-1394 subsystem, which provides direct access to the
+ connected 1394 buses to user space.  Through libraw1394/raw1394,
+ applications can directly send to and receive from other nodes without
+ requiring a kernel driver for the protocol in question.
+ .
+  Homepage: http://www.linux1394.org/
+Original-Maintainer: Guus Sliepen <guus@xxxxxxxxxx>
+
+Package: mawk
+Status: install ok installed
+Priority: required
+Section: base
+Installed-Size: 228
+Maintainer: Ubuntu Core Developers <ubuntu-devel@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 1.3.3-11ubuntu2
+Provides: awk
+Pre-Depends: libc6 (>= 2.4-1)
+Description: a pattern scanning and text processing language
+ Mawk is an interpreter for the AWK Programming Language. The AWK
+ language is useful for manipulation of data files, text retrieval and
+ processing, and for prototyping and experimenting with algorithms. Mawk
+ is a new awk meaning it implements the AWK language as defined in Aho,
+ Kernighan and Weinberger, The AWK Programming Language, Addison-Wesley
+ Publishing, 1988. (Hereafter referred to as the AWK book.) Mawk conforms
+ to the POSIX 1003.2 (draft 11.3) definition of the AWK language
+ which contains a few features not described in the AWK book, and mawk
+ provides a small number of extensions.
+ .
+ Mawk is smaller and much faster than gawk. It has some compile-time
+ limits such as NF = 32767 and sprintf buffer = 1020.
+Original-Maintainer: James Troup <james@xxxxxxxxxx>
+
+Package: ttf-arphic-uming
+Status: install ok installed
+Priority: optional
+Section: x11
+Installed-Size: 21160
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: all
+Version: 0.2.20080216.1-0ubuntu1
+Replaces: ttf-arphic-uming-mbe
+Depends: debconf | debconf-2.0, defoma
+Pre-Depends: dpkg (>= 1.10.24)
+Recommends: fontconfig (>= 2.3.1-1), x-ttcidfont-conf (>= 10)
+Conflicts: ttf-arphic-uming-mbe, x-ttcidfont-conf (<< 10)
+Conffiles:
+ /etc/fonts/conf.avail/25-ttf-arphic-uming-bitmaps.conf f0494d0cc06ebd0ed5603ca160fc979e
+ /etc/fonts/conf.avail/25-ttf-arphic-uming-render.conf 10c65261bed5e423be25bc05f8c5ecc6
+ /etc/fonts/conf.avail/35-ttf-arphic-uming-aliases.conf b54d3f2befb35a749dd0e6b020d2465d
+ /etc/fonts/conf.avail/41-ttf-arphic-uming.conf d7c4d77995ab59549d2afb2a5223cba3
+ /etc/fonts/conf.avail/64-ttf-arphic-uming.conf 67d537364d8813d441d593f543d07661
+ /etc/fonts/conf.avail/90-ttf-arphic-uming-embolden.conf add8c77cce21c08d8d1617964794bbdb
+ /etc/defoma/hints/ttf-arphic-uming.hints 464458489bd829c10401d3c1d6147df4
+Description: "AR PL UMing" Chinese Unicode TrueType font collection Mingti style
+ "AR PL UMing" is a high-quality Chinese Unicode TrueType font collection
+ (uming.ttc) derieved from the original "AR PL Mingti2L Big5" and
+ "AR PL SungtiL GB" fonts generously provided by Arphic Technology
+ to the Free Software community under the "Arphic Public License".
+ .
+ It has been extended from the original "AR PL Mingti2L Big5" and
+ "AR PL SungtiL GB" fonts with additional glyphs now covering
+ ISO8859-1,2,3,4,9,10,13,14,15, BIG5, GB2312-80 and HKSCS-2004.
+ It also includes Bopomofo Extensions for Hakka and Minnan according
+ to the Unicode 5.0 standard and their MBE variants.
+ .
+ Support for CNS 11643, GBK, GB 18030, Japanese and Korean is under heavy
+ development.
+ Users who need more Han glyphs than provided by GB2312 and Big5 or who need
+ support for Chinese minority languages may want to install this font package.
+ .
+ This font also includes Firefly's bitmap characters for better rendering in
+ small fontsizes (Big5 and GB2312 only).
+ .
+ This font is an alternative to the ttf-arphic-bsmi00lp and
+ ttf-arphic-gbsn00lp font packages.
+ .
+ If you use X Window System, be sure to install the "x-ttcidfont-conf"
+ package so you can use this font in X.
+ .
+ Original author: Arphic Technology Co., Ltd.
+     URL: http://www.arphic.com.tw/
+ Modified by Arne Goetje (arne@xxxxxxxxxx)
+     URL: http://www.freedesktop.org/wiki/Software/CJKUnifonts
+Homepage: http://www.freedesktop.org/wiki/Software/CJKUnifonts
+Original-Maintainer: Arne Goetje <arne@xxxxxxxxxx>
+
+Package: xserver-xorg-video-ark
+Status: install ok installed
+Priority: optional
+Section: x11
+Installed-Size: 92
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 1:0.6.0-9
+Replaces: xserver-xorg (<< 6.8.2-35), xserver-xorg-driver-ark
+Provides: xserver-xorg-video-2
+Depends: libc6 (>= 2.6.1-1), xserver-xorg-core (>= 2:1.4)
+Conflicts: xserver-xorg-driver-ark
+Description: X.Org X server -- ark display driver
+ This package provides the driver for the ark family
+ of chipsets.
+ .
+ More information about X.Org can be found at:
+ <URL:http://www.X.org>
+ <URL:http://xorg.freedesktop.org>
+ <URL:http://lists.freedesktop.org/mailman/listinfo/xorg>
+ .
+ This package is built from the X.org xf86-video-ark driver module.
+Original-Maintainer: Debian X Strike Force <debian-x@xxxxxxxxxxxxxxxx>
+
+Package: groff-base
+Status: install ok installed
+Priority: important
+Section: text
+Installed-Size: 2516
+Maintainer: Colin Watson <cjwatson@xxxxxxxxxx>
+Architecture: i386
+Source: groff
+Version: 1.18.1.1-16
+Replaces: groff (<< 1.18.1.1-9), jgroff (<< 1.17-1)
+Depends: libc6 (>= 2.7-1), libgcc1 (>= 1:4.1.1-21), libstdc++6 (>= 4.1.1-21)
+Suggests: groff
+Conflicts: groff (<< 1.17-1), jgroff (<< 1.17-1), pmake (<< 1.45-7), troffcvt (<< 1.04-14)
+Conffiles:
+ /etc/groff/man.local f2c6e1f0ab35c26505d35e3abbda7606
+ /etc/groff/mdoc.local ff5789529422421c5e5128f22c248e0c
+Description: GNU troff text-formatting system (base system components)
+ This package contains the traditional UN*X text formatting tools
+ troff, nroff, tbl, eqn, and pic. These utilities, together with the
+ man-db package, are essential for displaying the on-line manual pages.
+ .
+ groff-base is a stripped-down package containing the necessary components
+ to read manual pages in ASCII, Latin-1, and UTF-8, plus the PostScript
+ device (groff's default). Users who want a full groff installation, with
+ the standard set of devices, fonts, macros, and documentation, should
+ install the groff package.
+
+Package: gnupg
+Status: install ok installed
+Priority: standard
+Section: utils
+Installed-Size: 4480
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 1.4.6-2ubuntu5
+Replaces: gpg-rsa, gpg-rsaref
+Provides: gpg-rsa, gpg-rsaref
+Depends: gpgv, libbz2-1.0, libc6 (>= 2.7-1), libcurl3-gnutls (>= 7.16.2-1), libkrb53 (>= 1.6.dfsg.2), libldap-2.4-2 (>= 2.4.7), libreadline5 (>= 5.2), libusb-0.1-4 (>= 2:0.1.12), makedev (>= 2.3.1-13) | devfsd | hurd, zlib1g (>= 1:1.2.3.3.dfsg-1)
+Suggests: gnupg-doc, xloadimage
+Conflicts: gpg-idea (<= 2.2), gpg-rsa, gpg-rsaref, suidmanager (<< 0.50)
+Description: GNU privacy guard - a free PGP replacement
+ GnuPG is GNU's tool for secure communication and data storage.
+ It can be used to encrypt data and to create digital signatures.
+ It includes an advanced key management facility and is compliant
+ with the proposed OpenPGP Internet standard as described in RFC2440.
+ .
+ GnuPG does not use any patented algorithms so it cannot be compatible
+ with PGP2 because it uses IDEA (which is patented worldwide).
+Original-Maintainer: James Troup <james@xxxxxxxxxx>
+
+Package: libbrlapi0.5
+Status: install ok installed
+Priority: extra
+Section: libs
+Installed-Size: 132
+Maintainer: Ubuntu Accessibility Developers <ubuntu-accessibility-devel@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: brltty
+Version: 3.9-6ubuntu1
+Depends: libc6 (>= 2.7-1)
+Conflicts: libbrlapi, libbrlapi1-dev
+Description: braille display access via BRLTTY - shared library
+ This package contains the shared library necessary to run programs which
+ need to communicate with a braille display.
+Original-Maintainer: Mario Lang <mlang@xxxxxxxxxx>
+
+Package: xserver-xorg-video-cirrus
+Status: install ok installed
+Priority: optional
+Section: x11
+Installed-Size: 160
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 1:1.1.0-8ubuntu1
+Replaces: xserver-xorg (<< 6.8.2-35), xserver-xorg-driver-cirrus
+Provides: xserver-xorg-video-2
+Depends: libc6 (>= 2.4), xserver-xorg-core (>= 2:1.4)
+Conflicts: xserver-xorg-driver-cirrus
+Description: X.Org X server -- Cirrus display driver
+ This package provides the driver for the Cirrus Logic family of video
+ cards.
+ .
+ More information about X.Org can be found at:
+ <URL:http://www.X.org>
+ <URL:http://xorg.freedesktop.org>
+ <URL:http://lists.freedesktop.org/mailman/listinfo/xorg>
+ .
+ This package is built from the X.org xf86-video-cirrus driver module.
+Original-Maintainer: Debian X Strike Force <debian-x@xxxxxxxxxxxxxxxx>
+
+Package: bluez-cups
+Status: install ok installed
+Priority: optional
+Section: admin
+Installed-Size: 112
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: bluez-utils
+Version: 3.26-0ubuntu6
+Depends: cupsys, libbluetooth2 (>= 3.14), libc6 (>= 2.4), libdbus-1-3 (>= 1.1.1), libglib2.0-0 (>= 2.12.0)
+Description: Bluetooth printer driver for CUPS
+ This package contains a driver to let CUPS print to Bluetooth-connected
+ printers.  It is part of the BlueZ project.
+ .
+ BlueZ is the official Linux Bluetooth protocol stack. It is an Open Source
+ project distributed under GNU General Public License (GPL).
+Homepage: http://bluez.sourceforge.net
+Tag: hardware::printer, role::app-data, uitoolkit::gtk, use::driver, use::printing
+Original-Maintainer: Debian Bluetooth Maintainers <pkg-bluetooth-maintainers@xxxxxxxxxxxxxxxxxxxxxxx>
+
+Package: libnewt0.52
+Status: install ok installed
+Priority: important
+Section: base
+Installed-Size: 820
+Maintainer: Ubuntu Core developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: newt
+Version: 0.52.2-11.2ubuntu1
+Replaces: libnewt-utf8, libnewt0, libnewt0.51
+Depends: libc6 (>= 2.7-1), libslang2 (>= 2.0.7-1)
+Recommends: libfribidi0
+Conflicts: libnewt0.51
+Description: Not Erik's Windowing Toolkit - text mode windowing with slang
+ Newt is a windowing toolkit for text mode built from the slang library.
+ It allows color text mode applications to easily use stackable windows,
+ push buttons, check boxes, radio buttons, lists, entry fields, labels,
+ and displayable text. Scrollbars are supported, and forms may be nested
+ to provide extra functionality. This package contains the shared library
+ for programs that have been built with newt.
+Original-Maintainer: Alastair McKinstry <mckinstry@xxxxxxxxxx>
+
+Package: ltrace
+Status: install ok installed
+Priority: optional
+Section: utils
+Installed-Size: 192
+Maintainer: Ubuntu Core developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 0.5-3ubuntu1
+Depends: libc6 (>= 2.6.1-1), libelfg0 (>= 0.8.5)
+Conffiles:
+ /etc/ltrace.conf 193148e1e834d86eb4e0791fd241f5a4
+Description: Tracks runtime library calls in dynamically linked programs
+ ltrace is a debugging program which runs a specified command until it
+ exits.  While the command is executing, ltrace intercepts and records
+ the dynamic library calls which are called by
+ the executed process and the signals received by that process.
+ It can also intercept and print the system calls executed by the program.
+ .
+ The program to be traced need not be recompiled for this, so you can
+ use it on binaries for which you don't have the source handy.
+ .
+ You should install ltrace if you need a sysadmin tool for tracking the
+ execution of processes.
+Original-Maintainer: Juan Cespedes <cespedes@xxxxxxxxxx>
+
+Package: libdb4.6
+Status: install ok installed
+Priority: standard
+Section: libs
+Installed-Size: 1232
+Maintainer: Ubuntu Core developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: db
+Version: 4.6.21-6ubuntu1
+Depends: libc6 (>= 2.7-1)
+Conflicts: libdb2 (<< 2:2.7.7-3)
+Description: Berkeley v4.6 Database Libraries [runtime]
+ This is the runtime package for programs that use the v4.6 Berkeley
+ database library.
+Homepage: http://www.oracle.com/technology/software/products/berkeley-db/index.html
+Original-Maintainer: Debian Berkeley DB Maintainers <pkg-db-devel@xxxxxxxxxxxxxxxxxxxxxxx>
+
+Package: cupsys-driver-gutenprint
+Status: install ok installed
+Priority: optional
+Section: graphics
+Installed-Size: 728
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: gutenprint
+Version: 5.0.2-2ubuntu1
+Replaces: cupsys-driver-gimpprint, cupsys-driver-gimpprint-data
+Depends: cupsys (>= 1.2.5) | cups (>= 1.2.5), libc6 (>= 2.7-1), libcomerr2 (>= 1.33-3), libcupsimage2 (>= 1.3.0), libcupsys2 (>= 1.3.4), libgnutls13 (>= 2.0.4-0), libgutenprint2 (>= 5.0.2), libjpeg62, libkrb53 (>= 1.6.dfsg.2), libpng12-0 (>= 1.2.13-4), libtiff4, perl (>= 5.8.0), zlib1g (>= 1:1.2.3.3.dfsg-1)
+Suggests: gutenprint-doc (>= 5.0.2-2ubuntu1), gutenprint-locales (>= 5.0.2-2ubuntu1)
+Conflicts: cupsys-driver-gimpprint
+Description: printer drivers for CUPS
+ This package includes a CUPS driver based on Gutenprint.
+ .
+ The CUPS drivers contain all of the files needed to support
+ photo-quality printing on any printer supported by Gutenprint.  You
+ can find out more about the Common UNIX Printing System ("CUPS"), an
+ IPP-based printing system for UNIX/Linux, at:
+ .
+   http://www.cups.org
+ .
+ This is Gutenprint version 5.0.2, a stable release
+ in the 5.0 series.
+ .
+ Gutenprint is the print facility for the GIMP, and in addition a
+ suite of drivers that may be used with common UNIX spooling systems
+ using GhostScript or CUPS.  These drivers provide printing quality
+ for UNIX/Linux on a par with proprietary vendor-supplied drivers in
+ many cases, and can be used for many of the most demanding printing
+ tasks.  Gutenprint was formerly known as Gimp-Print.
+Original-Maintainer: Debian Printing Group <debian-printing@xxxxxxxxxxxxxxxx>
+
+Package: x11-apps
+Status: install ok installed
+Priority: optional
+Section: x11
+Installed-Size: 1644
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 7.3+1
+Replaces: xbase-clients (<= 1:7.2.ds2-3), oclock, x11perf, xbiff, xcalc, xclipboard, xclock, xconsole, xcursorgen, xditview, xedit, xeyes, xload, xlogo, xmag, xman, xmore, xwd, xwud
+Depends: libc6 (>= 2.6.1-1), libfontconfig1 (>= 2.4.0), libice6 (>= 1:1.0.0), libpng12-0 (>= 1.2.13-4), libsm6, libx11-6, libxaw7, libxcursor1 (>> 1.1.2), libxext6, libxft2 (>> 2.1.1), libxkbfile1, libxmu6, libxmuu1, libxrender1, libxt6, cpp
+Pre-Depends: x11-common (>= 1:7.0.0)
+Suggests: mesa-utils
+Conflicts: oclock, x11perf, xbiff, xcalc, xclipboard, xclock, xconsole, xcursorgen, xditview, xedit, xeyes, xload, xlogo, xmag, xman, xmore, xwd, xwud
+Conffiles:
+ /etc/X11/app-defaults/Clock-color b4ba6ae900e0e488e4b030f14c6fe656
+ /etc/X11/app-defaults/XCalc bc0d4c4717137a2d25e17b7358c8ad8d
+ /etc/X11/app-defaults/XCalc-color c8efe9caf8987a902df98270e2b291c9
+ /etc/X11/app-defaults/XClipboard 18ebd8e152da9203e9e34e88dad98d97
+ /etc/X11/app-defaults/XClock 812dfcc6f6d83e2ae9da809c3bf11c67
+ /etc/X11/app-defaults/XClock-color 7b049809f0bca03c76480959e2e4db89
+ /etc/X11/app-defaults/XConsole a310ffbe0ed9509a2477ea5f1ac1dcc5
+ /etc/X11/app-defaults/Xditview 49d35244a61618b60f17d3400f64a81e
+ /etc/X11/app-defaults/Xditview-chrtr 98a562569a7db396c9a0d2e6d414067e
+ /etc/X11/app-defaults/Xedit 8949a65aeae5372789ce50eb772571ad
+ /etc/X11/app-defaults/Xedit-color 59d7f0d96f4346ae0fe4904d46daf53c
+ /etc/X11/app-defaults/XLoad 3ea554c7be110102e42e25d3d83c4134
+ /etc/X11/app-defaults/XLogo fb1407c8cb1574726a6eb743b0092407
+ /etc/X11/app-defaults/XLogo-color 439375bf8e3b87f46eebf35f55a8dbb5
+ /etc/X11/app-defaults/Xmag 798a596142ae1b051408171e2b2db096
+ /etc/X11/app-defaults/Xman b34cc2adfe0b89d436864163387417d1
+ /etc/X11/app-defaults/XMore d6a85ee054f522e47a246d4471b6ab49
+Description: X applications
+ An X client is a program that interfaces with an X server (almost always via
+ the X libraries), and thus with some input and output hardware like a
+ graphics card, monitor, keyboard, and pointing device (such as a mouse).
+ .
+ This package provides a miscellaneous assortment of X applications
+ that ship with the X Window System, including:
+  - oclock and xclock, graphical clocks;
+  - xbiff, a tool which tells you when you have new email;
+  - xcalc, a scientific calculator desktop accessory;
+  - xclipboard, a tool to manage cut-and-pasted text selections;
+  - xconsole, which monitors system console messages;
+  - xcursorgen;
+  - xditview, a viewer for ditroff output;
+  - xedit, a text editor;
+  - xeyes, a demo program in which a pair of eyes track the pointer;
+  - xload, a monitor for the system load average;
+  - xlogo, a demo program that displays the X logo;
+  - xmag, which magnifies parts of the X screen;
+  - xman, a manual page browser;
+  - xmore;
+  - xwd, a utility for taking window dumps ("screenshots") of the X session;
+  - xwud, a viewer for window dumps created by xwd;
+  - Xmark, x11perf, and x11perfcomp, tools for benchmarking graphical
+    operations under the X Window System;
+ .
+ The xbiff, xcalc, xconsole, xedit and xman programs use bitmap images provided
+ by the xbitmaps package.
+Original-Maintainer: Debian X Strike Force <debian-x@xxxxxxxxxxxxxxxx>
+
+Package: x11-common
+Status: install ok installed
+Priority: optional
+Section: x11
+Installed-Size: 772
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: xorg
+Version: 1:7.3+10ubuntu10.2
+Replaces: x-common, xfree86-common, xinit (<= 1.0.2-0ubuntu3), xorg-common, xrgb (<= 1:1.0.0-0ubuntu2), xserver-common
+Depends: debconf (>= 0.5) | debconf-2.0, debianutils (>= 1.13), libc6 (>= 2.3), lsb-base (>= 1.3-9ubuntu2)
+Pre-Depends: debconf | debconf-2.0
+Conflicts: aee (<= 2.2.15b-1), ascd (<= 0.13.2-3), beaver (<= 0.2.5-2), bibview (<= 2.2-8), bugsx (<= 1.08-8), buici-clock (<= 0.4.5+b1), communicator-smotif-477, ctwm (<= 3.7-2), emelfm (<= 0.9.2-7), epan, fte-xwindow (<= 0.50.0-1.3), fvwm1 (<= 1.24r-46), fvwm95 (<= 2.0.43ba-23+b1), gerstensaft (<= 0.2-5.1), ghostview, gipsc (<= 0.4.3-2), grace (<= 1:5.1.18-1), grace6 (<= 5.99.0+final-4), gradio (<= 1.0.1-6), groff (<= 1.18.1.1-7), guitar (<= 0.1.4-11), hamsoft (<< 0.2.3-1), hanterm-classic (<= 3.1.6.0-4), hanterm-xf (<= 1:3.3.1p18-9.2), hfsutils-tcltk (<= 3.2.6-7), ibp (<= 0.21-4), isdnutils-xtools (<= 1:3.8.2005-12-06-4), ivtools-bin (<= 1.1.3-5), ivtools-dev (<= 1.1.3-5), kdrill (<= 6.4-2.1), kinput2-canna (<= 3.1-7), kinput2-canna-wnn (<= 3.1-7), kinput2-wnn (<= 3.1-7), kterm (<= 6.2.0-45), lbxproxy (<< 7.0), libmotif-dev (<= 2.2.3-1.3), libxft-dev (<= 2.1.8.2-5), lm-batmon (<= 0.96-3), login.app (<= 1.2.1-18), lsb-core (<= 3.1-4), lwm (<= 1.2.1-1), mctools-lite (<= 970129-16), mgp (<= 1.11b-6), motif-clients (<= 2.2.3-1.3), navigator-smotif-477, netscape-base-4, olvwm (<= 4.4.3.2p1.4-21), olwm (<= 3.2p1.4-21), oneko (<= 1.2.sakura.6-1), opera (<< 9.10-20060616), pgaccess (<= 1:0.98.8.20030520-2), phototk, pixmap (<= 2.6pl4-14.1), plotmtv (<= 1.4.4t-8.1), pmud (<= 0.10-9), ppxp (<= 0.2001080415-14), ppxp-x11 (<= 0.2001080415-14), procmeter (<= 2.5.1-11), propsel (<= 971130-5.3), proxymngr (<< 7.0), qcam (<= 0.91-11.1), regexplorer (<= 0.1.6-12), seyon (<= 2.20c-20), skkinput (<= 1:2.06.4-4), stella (<< 2.2-1), tkdesk (<= 2.0-5), tkseti (<= 3.06-1), tkworld, twlog (<= 1.3-4), twm (<< 7.0), ucbmpeg-play (<< 2.3p-13), vide (<= 1.21-3), videogen (<= 0.32-1), vtwm (<= 5.4.7-2), w9wm (<= 0.4.2-4), wdm (<= 1.28-1), wily (<= 0.13.41-6), wmavgload (<= 0.7.0-6.1), wmcpu (<= 1.3-4.1), wmdate (<= 0.5-7.1), wmnet (<= 1.05-12), wmnetselect (<= 0.85-5.5), wmscope (<= 3.0-9.1), wmsensors (<= 1.0.4-3.4), wmtv (<= 0.6.5-15), x-common, xautolock (<= 1:2.1-6), xbanner (<= 1.31-23), xbase-clients (<< 1:7.0), xbatt (<= 1.2.1-4), xbattbar (<= 1.4.2-3.1), xcal (<= 4.1-18.2), xcalendar-i18n (<= 4.0.0.i18p1-13.1), xcb (<= 2.4-4), xclip (<= 0.08-5), xclips (<= 6.21-6), xcolors (<= 1.5a-2), xcolorsel (<= 1.1a-11), xdkcal (<= 0.9d-2.1), xdm (<= 1:1.0.1-6), xdmx (<< 1:1.0), xdu (<= 3.0-14), xearth (<= 1.1-10.2), xengine (<= 1.11-9), xephem (<= 3.4-5), xext, xezmlm (<= 1.0.3-11), xfaces (<= 3.3-25), xfishtank (<= 2.2-23.1), xfm (<= 1.4.3-8), xfractint (<< 20.3.01-1), xfree86-common, xfs (<< 1:1.0), xfs-xtt (<= 1:1.4.1.xf430-6), xftp, xfwp (<< 7.0), xgdipc (<= 1.2-0.3), xgmod (<= 3.1-9), xgobi, xgraph (<= 12.1-3), xinput (<= 1.2-5.2), xipmsg (<= 0.8088-1.1), xisp, xlbiff (<< 4.1-4), xli (<= 1.17.0-21), xlockmore (<= 1:5.21-1), xlockmore-gl (<= 1:5.21-1), xlogmaster (<= 1.6.0-8), xmailbox (<= 2.5-9), xmem (<= 1.20-19), xmeter (<= 1.15-6), xmh (<= 6.8.2.dfsg.1-4), xmix (<= 2.1-5), xmon (<= 1.5.6-1.3), xnecview (<= 1.34-2), xnest (<< 1:1.0), xodo (<= 1.2-9.2), xorg-common, xpaste, xpmumon (<= 1.3.0), xpostit (<= 3.3.1-8.2), xpostitplus, xprint (<= 1:0.1.0.alpha1-13), xqbiff (<= 0.75-4), xrn (<= 9.02-7.1), xserver-common, xserver-xfree86 (<< 1:7.0), xserver-xfree86-dbg, xserver-xorg (<< 1:7.0.12), xslideshow (<= 3.1-8.1), xsysinfo (<= 1.7-2), xtel (<= 3.3.0-5.4), xterm (<< 208-1), xtoolwait (<= 1.3-6), xtrkcad (<= 3.1.4-1), xtrlock (<= 2.0-11), xturqstat (<= 2.2.2sarge1), xutils (<< 1:7.0), xv (<= 3.10a-26), xvfb (<< 1:1.0), xview-clients (<= 3.2p1.4-21), xviewg (<= 3.2p1.4-21), xviewg-dev (<= 3.2p1.4-21), xvkbd (<= 2.6-2.1), xwit (<= 3.4-6), xxkb (<= 1.10-2.1), xzoom (<= 0.3-17), yank (<= 0.2.1-7.2)
+Conffiles:
+ /etc/X11/rgb.txt 09ee098b83d94c7c046d6b55ebe84ae1
+ /etc/X11/Xsession 50678401170c9c701d2375bd279690c5
+ /etc/X11/Xsession.d/20x11-common_process-args e78d9826f7240d8473baf0665895b4d4
+ /etc/X11/Xsession.d/30x11-common_xresources eefd057cef837704a5bcf560882adbd0
+ /etc/X11/Xsession.d/40x11-common_xsessionrc db544c8543d1cb3762b9859288e77040
+ /etc/X11/Xsession.d/50x11-common_determine-startup c003b51d76445c89575bb2c57009b1ce
+ /etc/X11/Xsession.d/90x11-common_ssh-agent 5fc33a02e7535ef20db7d0ad4daa574a
+ /etc/X11/Xsession.d/99x11-common_start 3874d5e8f3ec888f69adb126e223e168
+ /etc/X11/Xsession.options 210cd520efa87a5197cac01e10b3a84a
+ /etc/X11/Xresources/x11-common b640adb1cd646ec097f8df5b6deca9f0
+ /etc/gdm/failsafeBlacklist 9b860f21bf33a6bfce55f233ba975e41
+ /etc/gdm/failsafeDexconf a71e8ab096da4f7a1c3c623b3055ceda
+ /etc/gdm/failsafeXinit 19ac389870cc2f88409cd1bfebf9a5fa
+ /etc/gdm/failsafeXServer 9385b098f7e288875218a54e8de16fa8
+ /etc/init.d/x11-common 40258e3cac3605db6297a2812b1a0072
+Description: X Window System (X.Org) infrastructure
+ x11-common contains the filesystem infrastructure required for further
+ installation of the X Window System in any configuration; it does not
+ provide a full installation of clients, servers, libraries, and utilities
+ required to run the X Window System.
+ .
+ A number of terms are used to refer to the X Window System, including "X",
+ "X Version 11", "X11", "X11R6", and "X11R7".  The version of X used in
+ Debian is derived from the version released by the X.Org Foundation, and
+ is thus often also referred to as "X.Org".  All of the preceding quoted
+ terms are functionally interchangeable in an Debian system.
+Original-Maintainer: Debian X Strike Force <debian-x@xxxxxxxxxxxxxxxx>
+
+Package: libscim8c2a
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 976
+Maintainer: Ubuntu Core developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: scim
+Version: 1.4.7-3ubuntu8
+Replaces: libscim8, scim (<< 1.2.0)
+Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1-21), libstdc++6 (>= 4.2.1-4), libx11-6
+Conflicts: libscim8, scim (<< 1.2.0)
+Description: library for SCIM platform
+ SCIM (Smart Common Input Method) is an input method (IM) platform.
+ .
+ This package provides runtime libraries for SCIM platform.
+ .
+ For more information about SCIM, please see the description of scim package.
+Homepage: http://www.scim-im.org/
+Original-Maintainer: Ming Hua <minghua@xxxxxxxx>
+
+Package: net-tools
+Status: install ok installed
+Priority: important
+Section: net
+Installed-Size: 816
+Maintainer: Ubuntu Core developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 1.60-19ubuntu1
+Replaces: ja-trans (<= 0.8-2), netbase (<< 4.00)
+Depends: libc6 (>= 2.7-1)
+Conflicts: ja-trans (<= 0.8-2)
+Description: The NET-3 networking toolkit
+ This package includes the important tools for controlling the network
+ subsystem of the Linux kernel.  This includes arp, ifconfig, netstat,
+ rarp, nameif and route.  Additionally, this package contains utilities
+ relating to particular network hardware types (plipconfig, slattach,
+ mii-tool) and advanced aspects of IP configuration (iptunnel, ipmaddr).
+ .
+ In the upstream package 'hostname' and friends are included. Those are
+ not installed by this package, since there is a special "hostname*.deb".
+Original-Maintainer: Bernd Eckenfels <ecki@xxxxxxxxxx>
+
+Package: libxfixes3
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 64
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: libxfixes
+Version: 1:4.0.3-2
+Depends: libc6 (>= 2.5-0ubuntu1), libx11-6
+Pre-Depends: x11-common (>= 1:7.0.0)
+Description: X11 miscellaneous 'fixes' extension library
+ libXfixes provides an X Window System client interface to the 'XFIXES'
+ extension to the X protocol.
+ .
+ It provides support for Region types, and some cursor functions.
+ .
+ More information about X.Org can be found at:
+ <URL:http://xorg.freedesktop.org>
+ <URL:http://lists.freedesktop.org/mailman/listinfo/xorg>
+ .
+ This module can be found at
+ git://anongit.freedesktop.org/git/xorg/lib/libXfixes
+Original-Maintainer: Debian X Strike Force <debian-x@xxxxxxxxxxxxxxxx>
+
+Package: smartdimmer
+Status: install ok installed
+Priority: optional
+Section: utils
+Installed-Size: 84
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 0.1-2build1
+Depends: libc6 (>= 2.6-1)
+Description: Change LCD brightness on Geforce 6200Go cards
+ Nvidia Geforce 6200Go cards contain hardware LCD brightness control.
+ Smartdimmer allows this to be controlled through software.
+Original-Maintainer: Matthew Garrett <mjg59@xxxxxxxxxxxxx>
+
+Package: libgutenprint2
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 2324
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: gutenprint
+Version: 5.0.2-2ubuntu1
+Depends: libc6 (>= 2.7-1)
+Suggests: gutenprint-locales (>= 5.0.2-2ubuntu1)
+Description: runtime for the Gutenprint printer driver library
+ This package includes the Gutenprint shared library, needed to
+ run programs using Gutenprint drivers.
+ .
+ This is Gutenprint version 5.0.2, a stable release
+ in the 5.0 series.
+ .
+ Gutenprint is the print facility for the GIMP, and in addition a
+ suite of drivers that may be used with common UNIX spooling systems
+ using GhostScript or CUPS.  These drivers provide printing quality
+ for UNIX/Linux on a par with proprietary vendor-supplied drivers in
+ many cases, and can be used for many of the most demanding printing
+ tasks.  Gutenprint was formerly known as Gimp-Print.
+Original-Maintainer: Debian Printing Group <debian-printing@xxxxxxxxxxxxxxxx>
+
+Package: myspell-en-za
+Status: install ok installed
+Priority: optional
+Section: text
+Installed-Size: 676
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: all
+Source: openoffice.org-dictionaries
+Version: 1:2.4.0~m240-1ubuntu1
+Provides: myspell-dictionary, myspell-dictionary-en
+Depends: dictionaries-common (>= 0.10) | openoffice.org-updatedicts
+Conflicts: openoffice.org (<= 1.0.3-2)
+Description: English_shouthafrican dictionary for myspell
+ This is the English_southafrican dictionary for use with the myspell
+ spellchecker which is currently used within OpenOffice.org and the mozilla
+ spellchecker.
+Original-Maintainer: Debian OpenOffice Team <debian-openoffice@xxxxxxxxxxxxxxxx>
+
+Package: xdg-utils
+Status: install ok installed
+Priority: optional
+Section: utils
+Installed-Size: 260
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: all
+Version: 1.0.2-2
+Recommends: file, iceweasel | www-browser, mime-support, shared-mime-info, x11-utils, x11-xserver-utils, xsltproc
+Suggests: desktop-file-utils, kdelibs4c2a, konqueror, libexo-0.3-0, libgnome2-0, libgnomevfs2-bin, libgtk2.0-bin, menu
+Description: desktop integration utilities from freedesktop.org
+ xdg-utils contains utilities for integrating applications with the
+ desktop environment, regardless of which desktop environment is used.
+ They are part of freedesktop.org's Portland project.
+ .
+ The following utilities are included:
+ .
+  * xdg-desktop-menu - Install desktop menu items
+  * xdg-desktop-icon - Install icons on the user's desktop
+  * xdg-icon-resource - Install icon resources
+  * xdg-mime - Gather MIME information about a file
+  * xdg-open - Open a URL in the user's preferred application that
+               handles the respective URL or file type
+  * xdg-email - Open the user's preferred email client, potentially with
+                subject and other info filled in
+  * xdg-screensaver - Enable, disable, or suspend the screensaver
+Original-Maintainer: Per Olofsson <pelle@xxxxxxxxxx>
+Homepage: http://portland.freedesktop.org/
+
+Package: unattended-upgrades
+Status: install ok installed
+Priority: optional
+Section: admin
+Installed-Size: 108
+Maintainer: Michael Vogt <michael.vogt@xxxxxxxxxx>
+Architecture: all
+Version: 0.30ubuntu1
+Depends: apt-utils, python, python-apt (>= 0.6.14ubuntu2)
+Suggests: mailx
+Conffiles:
+ /etc/logrotate.d/unattended-upgrades f117ae887a8955dcb5847edb39da7c49
+ /etc/apt/apt.conf.d/50unattended-upgrades 5012e448e63490adf1f874e0f98473ba
+Description: Install security upgrades automatically
+ This package will download and install security upgrades automatically
+ and unattended. It will take care to only install packages from the
+ configured origin and will check for conffile prompts.
+ .
+ This script is the backend for the APT::Periodic::Unattended-Upgrade
+ option.
+
+Package: libntfs10
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 256
+Maintainer: Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: linux-ntfs
+Version: 2.0.0-1ubuntu2
+Depends: libc6 (>= 2.7-1)
+Conflicts: libntfs5
+Description: library that provides common NTFS access functions
+ The Linux-NTFS project (http://www.linux-ntfs.org/) aims to bring full
+ support for the NTFS filesystem to the Linux operating system.
+ .
+ libntfs provides common NTFS access functions for the ntfsprogs
+ and other foreign open source applications.
+Original-Maintainer: David Martínez Moreno <ender@xxxxxxxxxx
+
+Package: libfs6
+Status: install ok installed
+Priority: optional
+Section: x11
+Installed-Size: 96
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: libfs
+Version: 2:1.0.0-4ubuntu2
+Depends: libc6 (>= 2.5-0ubuntu1), x11-common
+Description: X11 Font Services library
+ libFS, the Font Services library, provides various functions useful to
+ X11 font servers, and clients connecting to font servers.  It is not used
+ outside of these implementations.
+ .
+ More information about X.Org can be found at:
+ <URL:http://xorg.freedesktop.org>
+ <URL:http://lists.freedesktop.org/mailman/listinfo/xorg>
+ .
+ This module can be found as the module 'lib/FS' at
+ :pserver:anoncvs@xxxxxxxxxxxxxxxxxxx:/cvs/xorg
+Original-Maintainer: Debian X Strike Force <debian-x@xxxxxxxxxxxxxxxx>
+
+Package: debconf-i18n
+Status: install ok installed
+Priority: important
+Section: admin
+Installed-Size: 1032
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: all
+Source: debconf
+Version: 1.5.20
+Replaces: debconf (<< 1.3.0), debconf-utils (<< 1.3.22)
+Depends: debconf, liblocale-gettext-perl, libtext-charwidth-perl, libtext-iconv-perl, libtext-wrapi18n-perl
+Conflicts: debconf-english, debconf-utils (<< 1.3.22)
+Description: full internationalization support for debconf
+ This package provides full internationalization for debconf, including
+ translations into all available languages, support for using translated
+ debconf templates, and support for proper display of multibyte character
+ sets.
+Original-Maintainer: Debconf Developers <debconf-devel@xxxxxxxxxxxxxxxxxxxxxxx>
+
+Package: libxmu6
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 144
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: libxmu
+Version: 2:1.0.4-1
+Depends: libc6 (>= 2.7-1), libice6 (>= 1:1.0.0), libsm6, libx11-6, libxext6, libxt6, x11-common
+Description: X11 miscellaneous utility library
+ libXmu provides a set of miscellaneous utility convenience functions for X
+ libraries to use.  libXmuu is a lighter-weight version that does not depend
+ on libXt or libXext; for more information, see libxmuu1.
+ .
+ More information about X.Org can be found at:
+ <URL:http://xorg.freedesktop.org>
+ <URL:http://lists.freedesktop.org/mailman/listinfo/xorg>
+Original-Maintainer: Debian X Strike Force <debian-x@xxxxxxxxxxxxxxxx>
+
+Package: libdebian-installer4
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 88
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: libdebian-installer
+Version: 0.54
+Depends: libc6 (>= 2.6.1-1)
+Description: Library of common debian-installer functions
+ This library is used by debian-installer to perform common functions
+ such as logging messages and executing commands. If you aren't
+ working on debian-installer or building your own install system based
+ on debian-installer, then you probably don't need this library.
+Original-Maintainer: Debian Install System Team <debian-boot@xxxxxxxxxxxxxxxx>
+
+Package: acpid
+Status: install ok installed
+Priority: optional
+Section: admin
+Installed-Size: 176
+Maintainer: Ubuntu Core developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 1.0.4-5ubuntu9
+Depends: libc6 (>= 2.4), lsb-base (>= 1.3-9ubuntu3), module-init-tools (>= 3.1-rel-2ubuntu2), sysv-rc (>= 2.86.ds1-14.1ubuntu2)
+Conffiles:
+ /etc/acpi/powerbtn.sh 4a47848857665e6aff52ec15fac5bcc1
+ /etc/acpi/events/powerbtn 57f021ab2369f211018d6e7d11434314
+ /etc/logrotate.d/acpid df7469c58992aed179a5c30148b3da79
+ /etc/default/acpid 66b49aa55aa1f30b58765c1511442973
+ /etc/init.d/acpid 894074cb2f5733cb45edf2de58ba3a76
+Description: Utilities for using ACPI power management
+ Modern computers support the Advanced Configuration and Power Interface (ACPI)
+ to allow intelligent power management on your system and to query battery and
+ configuration status.
+ .
+ ACPID is a completely flexible, totally extensible daemon for delivering
+ ACPI events. It listens on a file (/proc/acpi/event) and when an event
+ occurs, executes programs to handle the event. The programs it executes
+ are configured through a set of configuration files, which can be
+ dropped into place by packages or by the admin.
+ .
+ In order to use this package you need a recent Kernel (=>2.4.7). This can be
+ one including the patches on http://acpid.sourceforge.net or a non patched one.
+Original-Maintainer: Cajus Pollmeier <cajus@xxxxxxxxxx>
+
+Package: grep
+Essential: yes
+Status: install ok installed
+Priority: required
+Section: utils
+Installed-Size: 1144
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 2.5.3~dfsg-3
+Provides: rgrep
+Pre-Depends: libc6 (>= 2.6.1-1)
+Conflicts: rgrep
+Description: GNU grep, egrep and fgrep
+ 'grep' is a utility to search for text in files; it can be used from the
+ command line or in scripts.  Even if you don't want to use it, other packages
+ on your system probably will.
+ .
+ The GNU family of grep utilities may be the "fastest grep in the west".
+ GNU grep is based on a fast lazy-state deterministic matcher (about
+ twice as fast as stock Unix egrep) hybridized with a Boyer-Moore-Gosper
+ search for a fixed string that eliminates impossible text from being
+ considered by the full regexp matcher without necessarily having to
+ look at every character. The result is typically many times faster
+ than Unix grep or egrep. (Regular expressions containing backreferencing
+ will run more slowly, however.)
+Original-Maintainer: Anibal Monsalve Salazar <anibal@xxxxxxxxxx>
+
+Package: libiw29
+Status: install ok installed
+Priority: extra
+Section: libs
+Installed-Size: 92
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: wireless-tools
+Version: 29-1ubuntu2
+Depends: libc6 (>= 2.7-1)
+Description: Wireless tools - library
+ Wireless tools are used to manipulate the Linux Wireless Extensions. The
+ Wireless Extension is an interface allowing you to set Wireless LAN specific
+ parameters and get the specific stats.
+ .
+ This package contains the dynamic library libiw.
+Original-Maintainer: Guus Sliepen <guus@xxxxxxxxxx>
+
+Package: smbclient
+Status: install ok installed
+Priority: optional
+Section: net
+Installed-Size: 12208
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: samba
+Version: 3.0.28a-1ubuntu4.4
+Replaces: samba (<< 2.999+3.0.alpha21-4), smbget
+Provides: samba-client
+Depends: libc6 (>= 2.4), libcomerr2 (>= 1.33-3), libkrb53 (>= 1.6.dfsg.2), libldap-2.4-2 (>= 2.4.7), libncurses5 (>= 5.6+20071006-3), libpopt0 (>= 1.10), libreadline5 (>= 5.2), samba-common (= 3.0.28a-1ubuntu4.4)
+Suggests: smbfs
+Conflicts: smbget
+Description: a LanManager-like simple client for Unix
+ The Samba software suite is a collection of programs that
+ implements the SMB/CIFS protocol for unix systems, allowing you to serve
+ files and printers to Windows, NT, OS/2 and DOS clients. This protocol
+ is sometimes also referred to as the LanManager or NetBIOS protocol.
+ .
+ This package contains some client components of the Samba suite. In
+ particular it includes the command line utilities smbclient, smbtar,
+ and smbspool. If you want to mount shares exported from Microsoft
+ Windows machines or a Samba server you must install the smbfs package.
+Original-Maintainer: Debian Samba Maintainers <pkg-samba-maint@xxxxxxxxxxxxxxxxxxxxxxx>
+
+Package: libbind9-30
+Status: install ok installed
+Priority: standard
+Section: libs
+Installed-Size: 92
+Maintainer: LaMont Jones <lamont@xxxxxxxxxx>
+Architecture: i386
+Source: bind9
+Version: 1:9.4.2-10
+Replaces: libbind0
+Depends: libc6 (>= 2.4), libdns32, libisc32, libisccfg30
+Conflicts: libbind0
+Description: BIND9 Shared Library used by BIND
+ The Berkeley Internet Name Domain (BIND) implements an Internet domain
+ name server.  BIND is the most widely-used name server software on the
+ Internet, and is supported by the Internet Software Consortium, www.isc.org.
+ .
+ This package delivers the libbind9 shared library used by BIND's daemons and
+ clients.
+
+Package: libgraphviz4
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 1560
+Maintainer: Ubuntu Core developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: graphviz
+Version: 2.16-3ubuntu2
+Depends: libc6 (>= 2.7-1), libcairo2 (>= 1.5.8), libexpat1 (>= 1.95.8), libfontconfig1 (>= 2.4.0), libgd2-noxpm (>= 2.0.35.dfsg) | libgd2-xpm (>= 2.0.35.dfsg), libglib2.0-0 (>= 2.15.4), libltdl3 (>= 1.5.2-2), libpango1.0-0 (>= 1.19.3), libx11-6, zlib1g (>= 1:1.2.3.3.dfsg-1)
+Description: rich set of graph drawing tools
+ Graphviz is a set of graph drawing tools. See the description of the graphviz
+ package for a full description.
+ .
+ This package contains the libraries.
+Homepage: http://www.graphviz.org/
+Original-Maintainer: Cyril Brulebois <cyril.brulebois@xxxxxxxxxxxxxxxx>
+
+Package: libxcb-xlib0
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 68
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: libxcb
+Version: 1.1-1ubuntu1
+Depends: libc6 (>= 2.7-1), libxcb1
+Description: X C Binding, Xlib/XCB interface library
+ This package contains the library files needed to run software using
+ libxcb-xlib, the Xlib/XCB interface for the X C Binding.  libxcb-xlib contains
+ portions of XCB used only by the Xlib/XCB compatibility layer; nothing other
+ than Xlib should ever link to it.
+ .
+ The XCB library provides an interface to the X Window System protocol,
+ designed to replace the Xlib interface.  XCB provides several advantages over
+ Xlib:
+ .
+  * Size: small library and lower memory footprint
+  * Latency hiding: batch several requests and wait for the replies later
+  * Direct protocol access: one-to-one mapping between interface and protocol
+  * Thread support: access XCB from multiple threads, with no explicit locking
+  * Easy creation of new extensions: automatically generates interface from
+    machine-parsable protocol descriptions
+Homepage: http://xcb.freedesktop.org
+Original-Maintainer: XCB Developers <xcb@xxxxxxxxxxxxxxxxxxxxx>
+
+Package: libx86-1
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 56
+Maintainer: Ubuntu Core developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: libx86
+Version: 0.99-1.2ubuntu4
+Depends: libc6 (>= 2.7-1)
+Description: x86 real-mode library
+ A library to provide support for making real-mode calls x86 calls. On x86
+ hardware, vm86 mode is used. On other platforms, x86 emulation is provided.
+Original-Maintainer: Matthew Garrett <mjg59@xxxxxxxxxxxxx>
+
+Package: gcc-4.2-base
+Status: install ok installed
+Priority: required
+Section: libs
+Installed-Size: 160
+Maintainer: Ubuntu Core developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: gcc-4.2
+Version: 4.2.3-2ubuntu7
+Description: The GNU Compiler Collection (base package)
+ This package contains files common to all languages and libraries
+ contained in the GNU Compiler Collection (GCC).
+Original-Maintainer: Debian GCC Maintainers <debian-gcc@xxxxxxxxxxxxxxxx>
+
+Package: python-cups
+Status: install ok installed
+Priority: optional
+Section: python
+Installed-Size: 272
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 1.9.34-0ubuntu1
+Provides: python2.4-cups, python2.5-cups
+Depends: libc6 (>= 2.7-1), libcupsys2 (>= 1.3.4), python (>= 2.4), python (<< 2.6), python-support (>= 0.7.1)
+Description: Python bindings for CUPS
+ A module for using the CUPS 1.2 API in Python programs.
+Original-Maintainer: Otavio Salvador <otavio@xxxxxxxxxx>
+
+Package: ghostscript-x
+Status: install ok installed
+Priority: optional
+Section: text
+Installed-Size: 168
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: ghostscript
+Version: 8.61.dfsg.1-1ubuntu3
+Depends: ghostscript (>= 8.60), libc6 (>= 2.4), libice6 (>= 1:1.0.0), libsm6, libx11-6, libxext6, libxt6
+Conflicts: ghostscript (<< 8.60)
+Description: The GPL Ghostscript PostScript/PDF interpreter - X Display support
+ Ghostscript is used for PostScript/PDF preview and printing.  Usually as
+ a back-end to a program such as ghostview, it can display PostScript and PDF
+ documents in an X11 environment.
+ .
+ The Ghostscript home page is at http://www.ghostscript.com/
+ .
+ This package contains the Ghostscript output device for X11. It is in
+ a separate package to allow the main package (ghostscript) to be installed
+ on X-less servers.
+Original-Maintainer: Masayuki Hatta (mhatta) <mhatta@xxxxxxxxxx>
+
+Package: python-problem-report
+Status: install ok installed
+Priority: optional
+Section: python
+Installed-Size: 148
+Maintainer: Martin Pitt <martin.pitt@xxxxxxxxxx>
+Architecture: all
+Source: apport
+Version: 0.108.2
+Depends: python (>= 2.5), python (<< 2.6), python-central (>= 0.6.5)
+Description: Python library to handle problem reports
+ This Python library provides an interface for creating, modifying,
+ and accessing standardized problem reports for program and kernel
+ crashes and packaging bugs (for details, see
+ https://wiki.ubuntu.com/AutomatedProblemReports).
+ .
+ These problem reports use standard Debian control format syntax
+ (RFC822).
+Python-Version: 2.5
+
+Package: linux-image-generic
+Status: install ok installed
+Priority: optional
+Section: metapackages
+Installed-Size: 52
+Maintainer: Ubuntu Kernel Team <kernel-team@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: linux-meta
+Version: 2.6.24.19.21
+Depends: linux-image-2.6.24-19-generic, linux-ubuntu-modules-2.6.24-19-generic
+Description: Generic Linux kernel image
+ This package will always depend on the latest generic kernel image
+ available.
+
+Package: mii-diag
+Status: install ok installed
+Priority: extra
+Section: net
+Installed-Size: 92
+Maintainer: Alain Schroeder <alain@xxxxxxxxxx>
+Architecture: i386
+Version: 2.11-2
+Depends: libc6 (>= 2.4-1)
+Suggests: nictools-pci, nictools-nopci
+Description: A little tool to manipulate network cards
+ Examines and sets the MII registers of network cards.
+ .
+ This is a general program. You can find specialized programs for
+ several network cards in the nictools-pci and nictools-nopci packages.
+
+Package: toshset
+Status: install ok installed
+Priority: optional
+Section: utils
+Installed-Size: 204
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 1.72-6ubuntu1
+Depends: libc6 (>= 2.6.1-1), libgcc1 (>= 1:4.2.1), libstdc++6 (>= 4.2.1), zlib1g (>= 1:1.2.3.3.dfsg-1)
+Description: Access much of the Toshiba laptop hardware interface
+ Toshset ia a command-line tool to allow access to much of the
+ Toshiba laptop hardware interface developed by Jonathan Buzzard. It can do
+ things like set the hard drive spin-down time, turn off the display
+ and set the fan speed without the help of the kernel.
+ The difference to toshutils is, that it does not need X or kernel-support.
+ .
+ This package also includes the Toshsat1800-irdasetup by Daniele Peri.  It
+ can be used to configure IrDA for laptops with ALI1533 bridge (LPC47N227
+ SuperIO), smc-ircc and not initializing BIOS (tested on Toshiba Satellite
+ 1800-514).
+ .
+ Homepage: http://www.schwieters.org/toshset/
+ Homepage: http://www.csai.unipa.it/peri/toshsat1800-irdasetup/
+Original-Maintainer: Debian QA Group <packages@xxxxxxxxxxxxx>
+
+Package: libnss3-1d
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 2596
+Maintainer: Ubuntu Mozilla Team <ubuntu-mozillateam@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: nss
+Version: 3.12.0.2+1.9-0ubuntu0.8.04.1
+Replaces: libnss3-0d (<< 3.12.0~1.9b1)
+Depends: libc6 (>= 2.4), libnspr4-0d (>= 1.8.0.10), libsqlite3-0 (>= 3.4.2)
+Description: Network Security Service libraries
+ This is a set of libraries designed to support cross-platform development
+ of security-enabled client and server applications. It can support SSLv2
+ and  v4, TLS, PKCS #5, #7, #11, #12, S/MIME, X.509 v3 certificates and
+ other security standards.
+Homepage: http://www.mozilla.org/projects/security/pki/nss/
+Original-Maintainer: Maintainers of Mozilla-related packages <pkg-mozilla-maintainers@xxxxxxxxxxxxxxxxxxxxxxx>
+
+Package: foomatic-filters
+Status: install ok installed
+Priority: optional
+Section: text
+Installed-Size: 444
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: all
+Version: 3.0.2-20071204-0ubuntu2.1
+Replaces: cupsomatic-ppd, foomatic-bin (<< 2.9)
+Depends: debconf (>= 0.5) | debconf-2.0, perl, ucf (>= 0.30)
+Pre-Depends: bash (>= 2.05)
+Recommends: cupsys | enscript | a2ps | mpage, cupsys-client | lpr | lprng | pdq | rlpr, foomatic-db-engine, gs-esp | gs
+Conflicts: cupsomatic-ppd (<< 20030507), foomatic-bin (<< 2.9), gs (<< 8.0), gs-aladdin (<< 8.0)
+Description: OpenPrinting printer support - filters
+ Foomatic is a printer database designed to make it easier to set up
+ common printers for use with UNIX-like other operating systems.
+ It provides the "glue" between a print spooler (like CUPS or lpr) and
+ the printer, by processing files sent to the printer.
+ .
+ This package consists of filter scripts used by the printer spoolers
+ to convert the incoming PostScript data into the printer's native
+ format using a printer-specific, but spooler-independent PPD file.
+ You will need to install the foomatic-db-engine package and its
+ dependencies for this package to be useful.
+ .
+ For use with CUPS, you will need both the cupsys and cupsys-client
+ packages installed on your system.
+Homepage: http://www.openprinting.org/
+Original-Maintainer: Chris Lawrence <lawrencc@xxxxxxxxxx>
+
+Package: libxdamage1
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 60
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: libxdamage
+Version: 1:1.1.1-3
+Depends: libc6 (>= 2.5-0ubuntu1), libx11-6, libxfixes3 (>= 1:4.0.1), x11-common
+Description: X11 damaged region extension library
+ libXdamage provides an X Window System client interface to the DAMAGE
+ extension to the X protocol.
+ .
+ The Damage extension provides for notification of when on-screen regions have
+ been 'damaged' (altered).
+ .
+ More information about X.Org can be found at:
+ <URL:http://xorg.freedesktop.org>
+ <URL:http://lists.freedesktop.org/mailman/listinfo/xorg>
+ .
+ This module can be found at
+ git://anongit.freedesktop.org/git/xorg/lib/libXdamage
+Original-Maintainer: Debian X Strike Force <debian-x@xxxxxxxxxxxxxxxx>
+
+Package: x11-xserver-utils
+Status: install ok installed
+Priority: optional
+Section: x11
+Installed-Size: 544
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 7.3+2
+Replaces: iceauth, sessreg, xbase-clients (<< 1:7.3), xgamma, xhost, xmodmap, xrandr, xrdb, xrefresh, xrgb, xset, xsetmode, xsetpointer, xsetroot, xstdcmap, xtrap, xutils (<< 1:7.2), xvidtune
+Depends: cpp, libc6 (>= 2.7-1), libice6 (>= 1:1.0.0), libsm6, libx11-6, libxau6, libxaw7, libxext6, libxi6, libxmu6, libxmuu1, libxrandr2 (>= 2:1.2.0), libxrender1, libxt6, libxtrap6, libxxf86misc1, libxxf86vm1
+Pre-Depends: x11-common (>= 1:7.0.0)
+Conflicts: iceauth, sessreg, xgamma, xhost, xmodmap, xrandr, xrdb, xrefresh, xrgb, xset, xsetmode, xsetpointer, xsetroot, xstdcmap, xtrap, xvidtune
+Conffiles:
+ /etc/X11/app-defaults/Xvidtune b8a276636b9bee314fa77b468a54a84a
+Description: X server utilities
+ An X client is a program that interfaces with an X server (almost always via
+ the X libraries), and thus with some input and output hardware like a
+ graphics card, monitor, keyboard, and pointing device (such as a mouse).
+ .
+ This package provides a miscellaneous assortment of X Server utilities
+ that ship with the X Window System, including:
+  - iceauth, a tool for manipulating ICE protocol authorization records;
+  - rgb;
+  - sessreg, a simple program for managing utmp/wtmp entries;
+  - xcmsdb, a device color characteristic utility for the X Color Management
+    System;
+  - xgamma, a tool for querying and setting a monitor's gamma correction;
+  - xhost, a very dangerous program that you should never use;
+  - xmodmap, a utility for modifying keymaps and pointer button mappings in X;
+  - xrandr, a command-line interface to the RandR extension;
+  - xrdb, a tool to manage the X server resource database;
+  - xrefresh, a tool that forces a redraw of the X screen;
+  - xset, a tool for setting miscellaneous X server parameters;
+  - xsetmode and xsetpointer, tools for handling X Input devices;
+  - xsetroot, a tool for tailoring the appearance of the root window;
+  - xstdcmap, a utility to selectively define standard colormap properties;
+  - xtrapchar, xtrapin, xtrapinfo, xtrapout, xtrapproto, xtrapreset, and
+    xtrapstats, a group of sample clients that use the XTrap extension;
+  - xvidtune, a tool for customizing X server modelines for your monitor.
+Original-Maintainer: Debian X Strike Force <debian-x@xxxxxxxxxxxxxxxx>
+
+Package: libxaw7
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 424
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: libxaw
+Version: 2:1.0.4-1
+Depends: libc6 (>= 2.6.1-1), libice6 (>= 1:1.0.0), libsm6, libx11-6, libxext6, libxmu6, libxpm4, libxt6, x11-common
+Description: X11 Athena Widget library
+ libXaw7 provides the second version of Xaw, the Athena Widgets tookit,
+ which is largely used by legacy X applications.  This version is the
+ most common version, as version 6 is considered deprecated, and version
+ 8, which adds Xprint support, is unsupported and not widely used.
+ In general, use of a more modern toolkit such as GTK+ is recommended.
+ .
+ More information about X.Org can be found at:
+ <URL:http://xorg.freedesktop.org>
+ <URL:http://lists.freedesktop.org/mailman/listinfo/xorg>
+Original-Maintainer: Debian X Strike Force <debian-x@xxxxxxxxxxxxxxxx>
+
+Package: upstart
+Status: install ok installed
+Priority: required
+Section: base
+Installed-Size: 328
+Maintainer: Scott James Remnant <scott@xxxxxxxxxx>
+Architecture: i386
+Version: 0.3.9-2
+Replaces: sysvinit
+Pre-Depends: libc6 (>= 2.4), sysvutils (>= 2.86.ds1-14.1ubuntu11)
+Recommends: startup-tasks, system-services, upstart-compat-sysv, upstart-logd
+Conflicts: sysvinit
+Conffiles:
+ /etc/event.d/control-alt-delete b9e5968d70426be30342405e78b10e43
+ /etc/event.d/sulogin 78c78501456cedf6dc0fd8e059394367
+Description: event-based init daemon
+ upstart is a replacement for the /sbin/init daemon which handles
+ starting of tasks and services during boot, stopping them during
+ shutdown and supervising them while the system is running.
+
+Package: xserver-xorg-video-neomagic
+Status: install ok installed
+Priority: optional
+Section: x11
+Installed-Size: 164
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 1:1.1.1-8
+Replaces: xserver-xorg (<< 6.8.2-35), xserver-xorg-driver-neomagic
+Provides: xserver-xorg-video-2
+Depends: libc6 (>= 2.6.1-1), xserver-xorg-core (>= 2:1.4)
+Conflicts: xserver-xorg-driver-neomagic
+Description: X.Org X server -- Neomagic display driver
+ This package provides the driver for Neomagic MagicGraph chipsets, which are
+ commonly found in laptops.
+ .
+ More information about X.Org can be found at:
+ <URL:http://www.X.org>
+ <URL:http://xorg.freedesktop.org>
+ <URL:http://lists.freedesktop.org/mailman/listinfo/xorg>
+ .
+ This package is built from the X.org xf86-video-neomagic driver module.
+Original-Maintainer: Debian X Strike Force <debian-x@xxxxxxxxxxxxxxxx>
+
+Package: libavahi-core5
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 272
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: avahi
+Version: 0.6.22-2ubuntu4
+Depends: libavahi-common3 (>= 0.6.10), libc6 (>= 2.7-1)
+Conflicts: libavahi-core3 (>= 0.6.8)
+Description: Avahi's embeddable mDNS/DNS-SD library
+ Avahi is a fully LGPL framework for Multicast DNS Service Discovery.
+ It allows programs to publish and discover services and hosts
+ running on a local network with no specific configuration.  For
+ example you can plug into a network and instantly find printers to
+ print to, files to look at and people to talk to.
+ .
+ This package contains the library for Avahi's embeddable mDNS/DNS-SD stack.
+ This can be used by embedded applications to integrate mDNS/DNS-SD
+ functionality into their applications.
+ .
+ You should not however use this library for non-embedded applications, you
+ should use libavahi-client which interacts with the avahi daemon.
+Homepage: http://avahi.org/
+Original-Maintainer: Utopia Maintenance Team <pkg-utopia-maintainers@xxxxxxxxxxxxxxxxxxxxxxx>
+
+Package: mlocate
+Status: install ok installed
+Priority: standard
+Section: utils
+Installed-Size: 216
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 0.18-2ubuntu1
+Depends: adduser, libc6 (>= 2.7-1)
+Conflicts: findutils (<= 4.2.31-1), slocate (<= 3.1-1.1)
+Conffiles:
+ /etc/updatedb.conf ed0d6a539cb8cfc1c99b75fd05dd2265
+ /etc/cron.daily/mlocate 76edb0718853e46f9fbb9f6b90fd1054
+Description: quickly find files on the filesystem based on their name
+ mlocate is a new implementation of locate, a tool to find files files
+ anywhere in the filesystem based on their name, using a fixed pattern
+ or a regular expression. Unlike other tools like find(1), locate uses
+ a previously created database to perform the search, allowing queries
+ to execute much faster. This database is updated periodically from
+ cron.
+ .
+ Several implementations of locate exist: the original implementation
+ from GNU's findutils, slocate, and mlocate. The advantages of mlocate
+ are:
+ .
+  * it indexes all the filesystem, but results of a search will only
+    include files that the user running locate has access to. It does
+    this by updating the database as root, but making it unreadable for
+    normal users, who can only access it via the locate binary. slocate
+    does this as well, but not the original locate.
+ .
+  * instead of re-reading all the contents of all directories each time
+    the database is updated, mlocate keeps timestamp information in its
+    database and can know if the contents of a directory changed without
+    reading them again. This makes updates much faster and less demanding
+    on the hard drive. This feature is only found in mlocate.
+Homepage: http://carolina.mff.cuni.cz/~trmac/blog/mlocate
+Original-Maintainer: Adeodato Simó <dato@xxxxxxxxxxxxxx>
+
+Package: libmng1
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 520
+Maintainer: Shiju p. Nair <shiju.p@xxxxxxxxx>
+Architecture: i386
+Source: libmng
+Version: 1.0.9-1
+Replaces: libmng-dev (<< 1.0.0-3), libmng
+Depends: libc6 (>= 2.4-1), libjpeg62, liblcms1 (>= 1.08-1), zlib1g (>= 1:1.2.1)
+Description: Multiple-image Network Graphics library
+ The libmng library supports decoding, displaying, encoding, and various
+ other manipulations of the Multiple-image Network Graphics (MNG) format
+ image files. It uses the zlib compression library, and optionally the
+ JPEG library by the Independent JPEG Group (IJG) and/or
+ lcms (little cms), a color-management library by Marti Maria Saguar.
+
+Package: libpoppler2
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 1684
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: poppler
+Version: 0.6.4-1ubuntu2
+Depends: libc6 (>= 2.4), libfontconfig1 (>= 2.4.0), libfreetype6 (>= 2.3.5), libgcc1 (>= 1:4.1.1-21), libjpeg62, libstdc++6 (>= 4.1.1-21), libxml2 (>= 2.6.27), zlib1g (>= 1:1.2.3.3.dfsg-1)
+Description: PDF rendering library
+ Poppler is a PDF rendering library based on xpdf PDF viewer.
+ .
+ This package contains the shared library.
+Original-Maintainer: Ondřej Surý <ondrej@xxxxxxxxxx>
+
+Package: libgadu3
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 172
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: ekg
+Version: 1:1.7~rc2-2
+Depends: libc6 (>= 2.5-0ubuntu1)
+Description: Gadu-Gadu protocol library - runtime files
+ Gadu-Gadu is an instant messaging program, very popular in
+ Poland. libgadu is a Gadu-Gadu protocol implementation
+ library.
+ .
+ This package contains the shared library.
+Original-Maintainer: Marcin Owsiany <porridge@xxxxxxxxxx>
+
+Package: xserver-xorg-video-newport
+Status: install ok installed
+Priority: optional
+Section: x11
+Installed-Size: 104
+Maintainer: Ubuntu Core developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 1:0.2.1-4ubuntu1
+Replaces: xserver-xorg (<< 6.8.2-35), xserver-xorg-driver-newport
+Provides: xserver-xorg-video-2
+Depends: libc6 (>= 2.6.1-1), xserver-xorg-core (>= 2:1.4)
+Conflicts: xserver-xorg-driver-newport
+Description: X.Org X server -- Newport display driver
+ This package provides the driver for the Newport family of chipsets integrated
+ in SGI Indy and Indy2 machines.
+ .
+ More information about X.Org can be found at:
+ <URL:http://www.X.org>
+ <URL:http://xorg.freedesktop.org>
+ <URL:http://lists.freedesktop.org/mailman/listinfo/xorg>
+ .
+ This package is built from the X.org xf86-video-newport driver module.
+Original-Maintainer: Debian X Strike Force <debian-x@xxxxxxxxxxxxxxxx>
+
+Package: command-not-found-data
+Status: install ok installed
+Priority: optional
+Section: admin
+Installed-Size: 2304
+Maintainer: Michael Vogt <michael.vogt@xxxxxxxxxx>
+Architecture: i386
+Source: command-not-found
+Version: 0.2.17ubuntu1
+Description: Set of data files for command-not-found.
+ This package provides the required data used by the command-not-found
+ application.
+Original-Maintainer: Zygmunt Krynicki <zkrynicki@xxxxxxxxx>
+
+Package: ftp
+Status: install ok installed
+Priority: standard
+Section: base
+Installed-Size: 152
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: netkit-ftp
+Version: 0.17-16build1
+Replaces: netstd
+Depends: libc6 (>= 2.6), libncurses5 (>= 5.6), libreadline5 (>= 5.2), netbase
+Description: The FTP client
+ ftp is the user interface to the ARPANET standard File Transfer Protocol.
+ The program allows a user to transfer files to and from a remote network
+ site.
+Original-Maintainer: Alberto Gonzalez Iniesta <agi@xxxxxxxxxxx>
+
+Package: libcwidget3
+Status: install ok installed
+Priority: important
+Section: libs
+Installed-Size: 1012
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: cwidget
+Version: 0.5.8-1ubuntu1
+Depends: libc6 (>= 2.7-1), libgcc1 (>= 1:4.1.1-21), libncursesw5 (>= 5.6+20071006-3), libsigc++-2.0-0c2a (>= 2.0.2), libstdc++6 (>= 4.1.1-21)
+Suggests: libcwidget-dev
+Description: high-level terminal interface library for C++ (runtime files)
+ libcwidget is a modern user interface library modeled on GTK+ and Qt,
+ but using curses as its display layer and with widgets that are
+ tailored to a terminal environment.
+ .
+ This package contains the files that are required to run programs
+ compiled against libcwidget.
+Original-Maintainer: Daniel Burrows <dburrows@xxxxxxxxxx>
+Homepage: http://cwidget.alioth.debian.org
+
+Package: bash-completion
+Status: install ok installed
+Priority: optional
+Section: shells
+Installed-Size: 468
+Maintainer: Ubuntu MOTU Developers <ubuntu-motu@xxxxxxxxxxxxxxxx>
+Architecture: all
+Version: 20060301-3ubuntu3
+Replaces: bash (<< 3.1dfsg-9)
+Depends: bash (>= 3.1dfsg-9), ucf
+Conffiles:
+ /etc/bash_completion 16473c99f6e9e343309309eebd25fa1a
+Description: programmable completion for the bash shell
+ bash completion extends bashs standard completion behavior to achieve
+ complex command lines with just a few keystrokes.  This project was
+ conceived to produce programmable completion routines for the most
+ common Linux/UNIX commands, reducing the amount of typing sysadmins
+ and programmers need to do on a daily basis.
+Original-Maintainer: Luk Claes <luk@xxxxxxxxxx>
+
+Package: libsasl2-modules
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 392
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: cyrus-sasl2
+Version: 2.1.22.dfsg1-18ubuntu2
+Depends: libc6 (>= 2.4), libsasl2-2 (= 2.1.22.dfsg1-18ubuntu2), libssl0.9.8 (>= 0.9.8f-1)
+Suggests: libsasl2-modules-gssapi-mit | libsasl2-modules-gssapi-heimdal, libsasl2-modules-ldap, libsasl2-modules-otp, libsasl2-modules-sql
+Description: Cyrus SASL - pluggable authentication modules
+ This is the Cyrus SASL API implementation, version 2.1. See package
+ libsasl2-2 and RFC 2222 for more information.
+ .
+ This package provides the following SASL modules: LOGIN, PLAIN, ANONYMOUS,
+ NTLM, CRAM-MD5, and DIGEST-MD5 (with DES support).
+Original-Maintainer: Debian Cyrus SASL Team <pkg-cyrus-sasl2-debian-devel@xxxxxxxxxxxxxxxxxxxxxxx>
+
+Package: libsasl2-2
+Status: install ok installed
+Priority: important
+Section: libs
+Installed-Size: 240
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: cyrus-sasl2
+Version: 2.1.22.dfsg1-18ubuntu2
+Replaces: libsasl2
+Depends: libc6 (>= 2.4), libdb4.6, libsasl2-modules (= 2.1.22.dfsg1-18ubuntu2) | libsasl2-modules-sql (= 2.1.22.dfsg1-18ubuntu2) | libsasl2-modules-gssapi-heimdal (= 2.1.22.dfsg1-18ubuntu2) | libsasl2-modules-kerberos-heimdal (= 2.1.22.dfsg1-18ubuntu2)
+Conflicts: libsasl2-gssapi-mit (<< 2.1.22), libsasl2-krb4-mit (<< 2.1.22), postfix (<< 2.3.4-3)
+Description: Cyrus SASL - authentication abstraction library
+ This is the Cyrus SASL API implementation, version 2.1.
+ .
+ SASL is the Simple Authentication and Security Layer, a method for
+ adding authentication support to connection-based protocols. To use
+ SASL, a protocol includes a command for identifying and
+ authenticating a user to a server and for optionally negotiating
+ protection of subsequent protocol interactions. If its use is
+ negotiated, a security layer is inserted between the protocol and the
+ connection. See RFC 2222 for more information.
+ .
+ Any of: ANONYMOUS, CRAM-MD5, DIGEST-MD5, GSSAPI (MIT or Heimdal
+ Kerberos 5), NTLM, OTP, PLAIN, or LOGIN can be used. If you intend to
+ use this package on a server that provides SASL authentication, then
+ you must install some of the libsasl2-modules* packages.
+Original-Maintainer: Debian Cyrus SASL Team <pkg-cyrus-sasl2-debian-devel@xxxxxxxxxxxxxxxxxxxxxxx>
+
+Package: passwd
+Status: install ok installed
+Priority: required
+Section: admin
+Installed-Size: 2208
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: shadow
+Version: 1:4.0.18.2-1ubuntu2
+Replaces: manpages-de (<< 0.4-9), manpages-es (<< 1.55-4), manpages-es-extra (<< 0.8a-15), manpages-fi (<< 0.2-4), manpages-fr (<< 1.64.0-1), manpages-hu (<< 20010119-5), manpages-it (<< 0.3.4-3), manpages-ja (<< 0.5.0.0.20050915-1), manpages-ko (<< 20050219-2), manpages-ru (<< 0.98-3), manpages-tr, manpages-zh
+Depends: debianutils (>= 2.15.2), libc6 (>= 2.7-1), libpam-modules (>= 0.72-5), libpam0g (>= 0.99.7.1), libselinux1, login (>= 970502-1)
+Conffiles:
+ /etc/default/useradd cc9f9a7713ab62a32cd38363d958f396
+ /etc/pam.d/passwd eaf2ad85b5ccd06cceb19a3e75f40c63
+ /etc/pam.d/chfn 4d466e00a348ba426130664d795e8afa
+ /etc/pam.d/chsh a6e9b589e90009334ffd030d819290a6
+Description: change and administer password and group data
+ This package includes passwd, chsh, chfn, and many other programs to
+ maintain password and group data.
+ .
+ Shadow passwords are supported.  See /usr/share/doc/passwd/README.Debian
+Original-Maintainer: Shadow package maintainers <pkg-shadow-devel@xxxxxxxxxxxxxxxxxxxxxxx>
+
+Package: xfonts-75dpi
+Status: install ok installed
+Priority: optional
+Section: x11
+Installed-Size: 4564
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: all
+Version: 1:1.0.0-4
+Depends: xfonts-utils (>= 1:1.0.0-6)
+Suggests: xfs | xserver
+Conffiles:
+ /etc/X11/fonts/75dpi/xfonts-75dpi.alias 6bc48023f2ae7f3bfc105db7b0ee6b49
+Description: 75 dpi fonts for X
+ xfonts-75dpi provides a set of bitmapped fonts at 75 dots per inch.  In
+ most cases it is desirable to have the X font server (xfs) and/or an X server
+ installed to make the fonts available to X clients.
+ .
+ This package contains only fonts in the ISO 10646-1 and ISO 8859-1
+ encodings, to conserve disk space.  For other encodings, see the
+ xfonts-75dpi-transcoded package.
+ .
+ This package and xfonts-100dpi provide the same set of fonts, rendered at
+ different resolutions; only one or the other is necessary, but both may be
+ installed.  xfonts-75dpi may be more suitable for small monitors and/or
+ small screen resolutions (under 1024x768).
+ .
+ This package requires the xfonts-utils package to prepare the font
+ directories for use by an X server or X font server.
+Original-Maintainer: Debian X Strike Force <debian-x@xxxxxxxxxxxxxxxx>
+
+Package: bsdmainutils
+Status: install ok installed
+Priority: important
+Section: utils
+Installed-Size: 616
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 6.1.10ubuntu2
+Depends: bsdutils (>= 3.0-0), cpp, debianutils (>= 1.8), libc6 (>= 2.7-1), libncurses5 (>= 5.6+20071006-3)
+Suggests: vacation, wamerican | wordlist, whois
+Conflicts: bsdutils (<< 1:2.13-11)
+Conffiles:
+ /etc/calendar/default f499e79b0d2d685aa5ae7e1013940b96
+ /etc/cron.daily/bsdmainutils f58739ed756eb2efa7b73f377976a5e4
+Description: collection of more utilities from FreeBSD
+ This package contains lots of small programs many people expect to find when
+ they use a BSD-style Unix system.
+ .
+ Included are: banner, ncal, cal, calendar, col, colcrt, colrm, column, from,
+ hexdump, look, lorder, ul, write.
+ .
+ This package used to contain whois and vacation, which are now distributed in
+ their own packages. Also here was tsort, which is now in the "coreutils"
+ package.
+Original-Maintainer: Daniel Baumann <daniel@xxxxxxxxxx>
+
+Package: util-linux-locales
+Status: install ok installed
+Priority: optional
+Section: utils
+Installed-Size: 3784
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: all
+Source: util-linux
+Version: 2.13.1-5ubuntu2
+Replaces: util-linux (<< 2.11b)
+Depends: util-linux (>= 2.13.1-0), util-linux (<< 2.13.1.0-0)
+Description: Locales files for util-linux
+ This package contains the internationalization files of for the util-linux
+ package.
+ .
+ They are needed when you want the programs in util-linux to print their
+ messages in other languages than English.
+Original-Maintainer: LaMont Jones <lamont@xxxxxxxxxx>
+
+Package: hostname
+Essential: yes
+Status: install ok installed
+Priority: required
+Section: base
+Installed-Size: 80
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 2.94
+Pre-Depends: libc6 (>= 2.6.1-1)
+Description: utility to set/show the host name or domain name
+ The hostname command can be used to either set or display the current host or
+ domain name of the system. This name is used by many of the networking programs
+ to identify the machine. The domain name is also used by NIS/YP.
+Original-Maintainer: Daniel Baumann <daniel@xxxxxxxxxx>
+
+Package: xkb-data
+Status: install ok installed
+Priority: extra
+Section: x11
+Installed-Size: 3924
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: all
+Source: xkeyboard-config
+Version: 1.1~cvs.20080104.1-1ubuntu6
+Replaces: libx11-6 (<< 1:6.2.1+cvs.20050610-1), xkeyboard-config (<< 0.8-7ubuntu2), xlibs (<< 6.8.2-39), xlibs-data (<< 6.8.2-39)
+Breaks: console-setup (<< 1.21ubuntu3)
+Conflicts: xkeyboard-config (<< 0.8-7ubuntu2)
+Conffiles:
+ /etc/X11/xkb/base.xml 68f43e9e59eef4230c05a7b3a464a02e
+Description: X Keyboard Extension (XKB) configuration data
+ This package contains configuration data used by the X Keyboard
+ Extension (XKB), which allows selection of keyboard layouts when
+ using a graphical interface.
+ .
+ Every X11 vendor provides its own XKB data files, so keyboard layout
+ designers have to send their layouts to several places.  The
+ xkeyboard-config project has been launched at FreeDesktop in order
+ to provide a central repository that could be used by all vendors.
+Homepage: http://www.freedesktop.org/Software/XKeyboardConfig
+Original-Maintainer: Debian X Strike Force <debian-x@xxxxxxxxxxxxxxxx>
+
+Package: dmz-cursor-theme
+Status: install ok installed
+Priority: optional
+Section: gnome
+Installed-Size: 3520
+Maintainer: Ubuntu MOTU Developers <ubuntu-motu@xxxxxxxxxxxxxxxx>
+Architecture: all
+Version: 0.4.1
+Description: Style neutral, scalable cursor theme
+ This package contains the DMZ cursor themes, which are derived from
+ the Industrial theme developed for the Ximian GNOME desktop. Black and
+ white cursors are provided, in scalable formats.
+Original-Maintainer: Josselin Mouette <joss@xxxxxxxxxx>
+
+Package: libacl1
+Status: install ok installed
+Priority: required
+Section: libs
+Installed-Size: 76
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: acl
+Version: 2.2.45-1
+Depends: libattr1 (>= 2.4.4-1), libc6 (>= 2.6.1-1)
+Conflicts: acl (<< 2.0.0), libacl1-kerberos4kth
+Description: Access control list shared library
+ This package contains the libacl.so dynamic library containing
+ the POSIX 1003.1e draft standard 17 functions for manipulating
+ access control lists.
+ .
+  Homepage: http://oss.sgi.com/projects/xfs/
+Original-Maintainer: Nathan Scott <nathans@xxxxxxxxxx>
+
+Package: screen
+Status: install ok installed
+Priority: optional
+Section: misc
+Installed-Size: 980
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 4.0.3-7ubuntu1
+Depends: libc6 (>= 2.6.1-1), libncursesw5 (>= 5.6), libpam0g (>= 0.99.7.1)
+Conffiles:
+ /etc/screenrc 12c245238eb8b653625bba27dc81df6a
+ /etc/init.d/screen-cleanup 34795db00210835c0bc627f189871421
+Description: terminal multiplexor with VT100/ANSI terminal emulation
+ screen is a terminal multiplexor that runs several separate "screens" on a
+ single physical character-based terminal.  Each virtual terminal emulates a
+ DEC VT100 plus several ANSI X3.64 and ISO 2022 functions.  Screen sessions
+ can be detached and resumed later on a different terminal.
+ .
+ Screen also supports a whole slew of other features.  Some of these are:
+ configurable input and output translation, serial port support, configurable
+ logging, multi-user support, and utf8 charset support.
+Original-Maintainer: Jan Christoph Nordholz <hesso@xxxxxxxxxxxxxxxxxxxxxx>
+
+Package: libpam-runtime
+Status: install ok installed
+Priority: required
+Section: admin
+Installed-Size: 552
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: all
+Source: pam
+Version: 0.99.7.1-5ubuntu6.1
+Replaces: libpam0g-dev, libpam0g-util
+Conflicts: libpam0g (<< 0.66-0), libpam0g-util
+Conffiles:
+ /etc/pam.conf 87fc76f18e98ee7d3848f6b81b3391e5
+ /etc/pam.d/other 31aa7f2181889ffb00b87df4126d1701
+Description: Runtime support for the PAM library
+ Contains configuration files and  directories required for
+ authentication  to work on Debian systems.  This package is required
+ on almost all installations.
+Original-Maintainer: Steve Langasek <vorlon@xxxxxxxxxx>
+
+Package: foomatic-db-engine
+Status: install ok installed
+Priority: optional
+Section: text
+Installed-Size: 880
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 3.0.2-20070719-0ubuntu4
+Replaces: foomatic-bin (<< 2.9)
+Depends: perl (>= 5.6.0-16), libc6 (>= 2.6-1), libxml2 (>= 2.6.29), foomatic-db, foomatic-filters, wget | curl
+Pre-Depends: bash (>= 2.05)
+Recommends: netcat
+Suggests: foomatic-db-hpijs, foomatic-db-gutenprint, foomatic-gui
+Conflicts: foomatic-bin (<< 2.9), foomatic-db (<< 2.9)
+Description: OpenPrinting printer support - programs
+ Foomatic is a printing system designed to make it easier to set up
+ common printers for use with Debian (and other operating systems).
+ It provides the "glue" between a print spooler (like CUPS or lpr) and
+ your actual printer, by telling your computer how to process files
+ sent to the printer.
+ .
+ This package contains the architecture-dependent programs needed to
+ set up and maintain the foomatic system.  You will also need one or
+ more database packages.  The foomatic-db package includes drivers for
+ most common printers using Ghostscript as the print processor, as
+ well as some common glue code used in other filter systems.
+ .
+ foomatic-db-hpijs includes support for photo-quality printing with
+ Hewlett-Packard and some other consumer inkjets using the HPIJS
+ backend developed by HP.
+ .
+ foomatic-db-gutenprint includes support for photo-quality printing
+ with many consumer inkjets (including those from HP and Epson).
+ .
+ foomatic-gui provides a GNOME-based setup tool for Foomatic printer
+ queues using the command-line tools provided in this package.
+ .
+ Home Page: http://www.openprinting.org/
+Original-Maintainer: Chris Lawrence <lawrencc@xxxxxxxxxx>
+
+Package: libgstreamer0.10-0
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 2160
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: gstreamer0.10
+Version: 0.10.18-4ubuntu1
+Depends: libc6 (>= 2.7-1), libglib2.0-0 (>= 2.16.0), libxml2 (>= 2.6.27)
+Suggests: gstreamer0.10-plugins, gstreamer0.10-tools
+Conflicts: libgstreamer-plugins-base0.10-0 (<< 0.10.11cvs20070110-0ubuntu5)
+Description: Core GStreamer libraries and elements
+ GStreamer is a streaming media framework, based on graphs of filters
+ which operate on media data.  Applications using this library can do
+ anything from real-time sound processing to playing videos, and just
+ about anything else media-related.  Its plugin-based architecture means
+ that new data types or processing capabilities can be added simply by
+ installing new plug-ins.
+ .
+ This package contains the core library and elements.
+Homepage: http://gstreamer.freedesktop.org
+Original-Maintainer: Maintainers of GStreamer packages <pkg-gstreamer-maintainers@xxxxxxxxxxxxxxxxxxxxxxx>
+
+Package: xauth
+Status: install ok installed
+Priority: optional
+Section: x11
+Installed-Size: 88
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 1:1.0.2-2
+Replaces: xbase-clients (<= 1:7.2.ds2-3)
+Depends: libc6 (>= 2.6.1-1), libx11-6, libxau6, libxext6, libxmuu1, cpp
+Pre-Depends: x11-common (>= 1:7.0.0)
+Suggests: pdksh
+Description: X authentication utility
+ xauth is a small utility to read and manipulate Xauthority files, which
+ are used by servers and clients alike to control authentication and access
+ to X sessions.
+ .
+ xauth's xauth_switch_to_sun-des-1 script requires a ksh implementation
+ to be installed.
+Original-Maintainer: Debian X Strike Force <debian-x@xxxxxxxxxxxxxxxx>
+
+Package: ufw
+Status: install ok installed
+Priority: optional
+Section: admin
+Installed-Size: 204
+Maintainer: Jamie Strandboge <jamie@xxxxxxxxxx>
+Architecture: all
+Version: 0.16.2.1
+Depends: debconf, iptables (>= 1.3.3), python (>= 2.5), ucf
+Conffiles:
+ /etc/ufw/sysctl.conf 5dccb53706555991e5950ccfbe5c9283
+ /etc/default/ufw 2516dfe8eac8b23bd36011f23b41ef37
+ /etc/init.d/ufw 1ee79abb604e4b485c83fde7e774dadd
+Description: program for managing a netfilter firewall
+ Ufw is a tool to manage a local host-based firewall. It provides a command
+ line interface and aims to be uncomplicated and easy to use.
+Homepage: https://launchpad.net/ufw
+Python-Version: >= 2.5
+
+Package: libslang2
+Status: install ok installed
+Priority: required
+Section: libs
+Installed-Size: 1112
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: slang2
+Version: 2.1.3-2
+Depends: libc6 (>= 2.6.1-1)
+Recommends: libpng12-0
+Description: The S-Lang programming library - runtime version
+ S-Lang is a C programmer's library that includes routines for the rapid
+ development of sophisticated, user friendly, multi-platform applications.
+ .
+ This package contains only the shared library libslang.so.* and copyright
+ information. It is only necessary for programs that use this library (such
+ as jed and slrn). If you plan on doing development with S-Lang, you will
+ need the companion -dev package as well.
+Original-Maintainer: Alastair McKinstry <mckinstry@xxxxxxxxxx>
+
+Package: pnm2ppa
+Status: install ok installed
+Priority: optional
+Section: text
+Installed-Size: 860
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 1.12-16
+Depends: libc6 (>= 2.5-0ubuntu1), debconf (>= 0.5) | debconf-2.0, gs
+Suggests: magicfilter | apsfilter
+Conflicts: pbm2ppa
+Description: PPM to PPA converter
+ Using pnm2ppa it's possible to run HP-GDI printers on Linux. These printers
+ are normally "Windows-only" and use the PPA protocol which is proprietary.
+ pnm2ppa supports color and is supposed to work faster than pbm2ppa.
+ .
+ pnm2ppa supports the following printers: HP Deskjet 7XX Series, HP Deskjet
+ 820 Series and HP Deskjet 1000 Series.
+Original-Maintainer: Chad Walstrom <chewie@xxxxxxxxxx>
+
+Package: initscripts
+Status: install ok installed
+Priority: required
+Section: admin
+Installed-Size: 392
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: sysvinit
+Version: 2.86.ds1-14.1ubuntu45
+Replaces: libc0.1, libc0.3, libc6, libc6.1, mdutils, sysvinit (<< 2.85-12)
+Depends: debianutils (>= 2.13.1), e2fsprogs (>= 1.32+1.33-WIP-2003.04.14-1), libc6 (>= 2.4), lsb-base (>= 3.0-6), mount (>= 2.11x-1), passwd, sysvutils
+Breaks: usplash (<< 0.5.14)
+Conflicts: mdutils, sysv-rc (<< 2.86.ds1-1.2), sysvinit (<< 2.86.ds1-12)
+Conffiles:
+ /etc/init.d/bootclean edf67917d1dbc02408c3916c9b957afe
+ /etc/init.d/bootlogd c76405d9d9742316e88fb0ef962d2538
+ /etc/init.d/stop-bootlogd e6ed1df58599952112a2d596a1bb0432
+ /etc/init.d/stop-bootlogd-single f9df829a40820033584a3e754dc43847
+ /etc/init.d/bootmisc.sh 4ee19611d818ef70bbf2d9c0c2ca53bc
+ /etc/init.d/checkfs.sh 5a62ceb5131c095bac3f2b5c550fc0c8
+ /etc/init.d/checkroot.sh f84450a71702fd72160ea736f19f75ee
+ /etc/init.d/halt 761c1b5635c23b9409711296aaa216df
+ /etc/init.d/hostname.sh 2af3e48d73f4a7ce0a4d977672f46025
+ /etc/init.d/killprocs ef2eb977ef93dded1fade267d7e75b85
+ /etc/init.d/mountall.sh 4bce6ca2e574de773e1c6147db24df78
+ /etc/init.d/mountall-bootclean.sh ad9e3afdaff8d033fd7cda89c32ee385
+ /etc/init.d/mountnfs-bootclean.sh 7d09bb7c922336ad57a501983e3374af
+ /etc/init.d/mountoverflowtmp 3083e59af01d171209841a3bcba7bfd3
+ /etc/init.d/mountdevsubfs.sh e9b025631bd8377f2e2794f603f21494
+ /etc/init.d/mountkernfs.sh a150b83280ebdcc712bb957f155c2b71
+ /etc/init.d/mtab.sh 225b3e690778cfba0abaa3f3b1be1c38
+ /etc/init.d/reboot 59d2bb014c62eb9aa7f1d1ed70cae772
+ /etc/init.d/rmnologin e48b235c7c2ea0550f6a6ed2f3f769b3
+ /etc/init.d/sendsigs 01180e7ef386cba551d513a03f720cc2
+ /etc/init.d/single 0b4962c7628588a48f05c5f457a08ae8
+ /etc/init.d/umountfs b31576edca8cd0bafd5275889b40ff80
+ /etc/init.d/umountnfs.sh cd321a859826ae99c6a644b3400d9038
+ /etc/init.d/umountroot 4c5f93fe4fa5f99c7189ad7b97239044
+ /etc/init.d/urandom 2038fd1ca0cdac1b87341c0cb5170349
+ /etc/init.d/waitnfs.sh 7b882d9ee8bdf17419405fab99438018
+ /etc/default/bootlogd 70a108da715299a6e33470eb450669fb
+ /etc/default/devpts fc857c5ac5fb84d80720ed4d1c624f6e
+ /etc/default/halt 18d9844cf8ca8608e2a559a4555e593a
+ /etc/default/tmpfs d959a98cfb571cd7fdfb36bbb3d0a5c8
+ /etc/network/if-up.d/mountnfs 4fbdcf67126554248909c6586e45c2af
+Description: Scripts for initializing and shutting down the system
+ The scripts in this package initialize a standard Debian
+ GNU/Linux system at boot time and finalize it at halt or
+ reboot time.
+Original-Maintainer: Debian sysvinit maintainers <pkg-sysvinit-devel@xxxxxxxxxxxxxxxxxxxxxxx>
+
+Package: libblkid1
+Status: install ok installed
+Priority: required
+Section: libs
+Installed-Size: 116
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: e2fsprogs
+Version: 1.40.8-2ubuntu2
+Depends: libc6 (>= 2.7-1), libdevmapper1.02.1 (>= 2:1.02.20)
+Description: block device id library
+ The blkid library which allows system programs like fsck and
+ mount to quickly and easily find block devices by filesystem UUID and
+ LABEL.  This allows system administrators to avoid specifying
+ filesystems by hard-coded device names, but via a logical naming
+ system instead.
+Original-Maintainer: Theodore Y. Ts'o <tytso@xxxxxxx>
+
+Package: libdatrie0
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 80
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: libdatrie
+Version: 0.1.2-2
+Depends: libc6 (>= 2.6.1-1)
+Description: Double-array trie library
+ Trie is a kind of digital search tree, an efficient indexing method with
+ O(1) time complexity for searching. Comparably as efficient as hashing,
+ trie also provides flexibility on incremental matching and key spelling
+ manipulation. This makes it ideal for lexical analyzers, as well as
+ spelling dictionaries.
+ .
+ This library is an implementation of double-array structure for representing
+ trie, as proposed by Junichi Aoe. The details of the implementation can be
+ found at http://linux.thai.net/~thep/datrie/datrie.html
+ .
+ This package contains the shared libraries needed to run programs that use
+ the datrie library.
+ .
+ Homepage: http://libthai.sourceforge.net/
+Original-Maintainer: Theppitak Karoonboonyanan <thep@xxxxxxxxxxxxxx>
+
+Package: xserver-xorg-video-nsc
+Status: install ok installed
+Priority: optional
+Section: x11
+Installed-Size: 356
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 1:2.8.3-2ubuntu0.1
+Replaces: xserver-xorg (<< 6.8.2-35), xserver-xorg-driver-nsc
+Provides: xserver-xorg-video-2
+Depends: libc6 (>= 2.4), xserver-xorg-core (>= 2:1.4)
+Conflicts: xserver-xorg-driver-nsc
+Description: X.Org X server -- NSC Geode GX1 display driver
+ This package provides the driver for the National Semiconductor Geode GX1
+ chipsets.
+ .
+ More information about X.Org can be found at:
+ <URL:http://www.X.org>
+ <URL:http://xorg.freedesktop.org>
+ <URL:http://lists.freedesktop.org/mailman/listinfo/xorg>
+ .
+ This package is built from the X.org xf86-video-nsc driver module.
+Original-Maintainer: Debian X Strike Force <debian-x@xxxxxxxxxxxxxxxx>
+
+Package: apparmor-utils
+Status: install ok installed
+Priority: extra
+Section: base
+Installed-Size: 1704
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: apparmor
+Version: 2.1+1075-0ubuntu9.1
+Depends: apparmor, librpc-xml-perl, libterm-readkey-perl, perl (>= 5.6.0-16)
+Recommends: libterm-readline-gnu-perl
+Suggests: apparmor-docs
+Conffiles:
+ /etc/apparmor/logprof.conf d9a69a393c4528eda44eec8ad2b2a139
+ /etc/apparmor/severity.db 4bca6193572f546ecf9a4956453ea2f5
+Description: Utilities for controlling AppArmor
+ This provides some useful programs to help create and manage
+ AppArmor profiles.
+Original-Maintainer: Magnus Runesson <M.Runesson@xxxxxxxxx>
+
+Package: dc
+Status: install ok installed
+Priority: standard
+Section: math
+Installed-Size: 208
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: bc
+Version: 1.06.94-3ubuntu1
+Depends: libc6 (>= 2.6.1-1)
+Description: The GNU dc arbitrary precision reverse-polish calculator
+ GNU dc is a reverse-polish desk calculator which supports unlimited
+ precision arithmetic.  It also allows you to define and call macros.
+ .
+ A reverse-polish calculator stores numbers on a stack. Entering a number
+ pushes it on the stack.  Arithmetic operations pop arguments off the
+ stack and push the results.
+ Home page: http://directory.fsf.org/GNU/bc.html
+Original-Maintainer: John Hasler <jhasler@xxxxxxxxxx>
+
+Package: libss2
+Status: install ok installed
+Priority: required
+Section: libs
+Installed-Size: 96
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: e2fsprogs
+Version: 1.40.8-2ubuntu2
+Replaces: e2fsprogs (<< 1.34-1)
+Depends: libc6 (>= 2.7-1), libcomerr2
+Description: command-line interface parsing library
+ This package includes a tool that parses a command table to generate
+ a simple command-line interface parser, the include files needed to
+ compile and use it, and the static libs.
+ .
+ It was originally inspired by the Multics SubSystem library.
+Original-Maintainer: Theodore Y. Ts'o <tytso@xxxxxxx>
+
+Package: command-not-found
+Status: install ok installed
+Priority: optional
+Section: admin
+Installed-Size: 100
+Maintainer: Michael Vogt <michael.vogt@xxxxxxxxxx>
+Architecture: all
+Version: 0.2.17ubuntu1
+Depends: command-not-found-data, python, python-apt, python-central (>= 0.6.1), python-gdbm
+Conffiles:
+ /etc/zsh_command_not_found db45d1f2fdb7675d7b6ea3dd75901b14
+Description: Suggest installation of packages in interactive bash sessions
+ This package will install handler for command_not_found that lookups
+ programs not currently installed but available from the repositiories.
+Original-Maintainer: Zygmunt Krynicki <zkrynicki@xxxxxxxxx>
+Python-Version: current
+
+Package: libavahi-common-data
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 96
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: avahi
+Version: 0.6.22-2ubuntu4
+Conflicts: libavahi-common0
+Description: Avahi common data files
+ Avahi is a fully LGPL framework for Multicast DNS Service Discovery.
+ It allows programs to publish and discover services and hosts
+ running on a local network with no specific configuration.  For
+ example you can plug into a network and instantly find printers to
+ print to, files to look at and people to talk to.
+ .
+ This package contains common data files for avahi.
+Homepage: http://avahi.org/
+Original-Maintainer: Utopia Maintenance Team <pkg-utopia-maintainers@xxxxxxxxxxxxxxxxxxxxxxx>
+
+Package: myspell-en-us
+Status: install ok installed
+Priority: optional
+Section: text
+Installed-Size: 752
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: all
+Source: openoffice.org-dictionaries
+Version: 1:2.4.0~m240-1ubuntu1
+Provides: myspell-dictionary, myspell-dictionary-en
+Depends: dictionaries-common (>= 0.10) | openoffice.org-updatedicts
+Conflicts: openoffice.org (<= 1.0.3-2)
+Description: English_american dictionary for myspell
+ This is the English_american dictionary for use with the myspell spellchecker
+ which is currently used within OpenOffice.org and the mozilla
+ spellchecker.
+Original-Maintainer: Debian OpenOffice Team <debian-openoffice@xxxxxxxxxxxxxxxx>
+
+Package: findutils
+Essential: yes
+Status: install ok installed
+Priority: required
+Section: utils
+Installed-Size: 1172
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 4.2.32-1ubuntu2
+Pre-Depends: libc6 (>= 2.7-1)
+Suggests: mlocate | locate | slocate
+Description: utilities for finding files--find, xargs
+ GNU findutils provides utilities to find files meeting specified
+ criteria and perform various actions on the files which are found.
+ This package contains 'find' and 'xargs'; however, 'locate' has
+ been split off into a separate package.
+Original-Maintainer: Andreas Metzler <ametzler@xxxxxxxxxx>
+
+Package: libxft2
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 128
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: xft
+Version: 2.1.12-2ubuntu5
+Depends: libc6 (>= 2.4), libfontconfig1 (>= 2.4.0), libfreetype6 (>= 2.3.5), libx11-6, libxrender1, zlib1g (>= 1:1.2.3.3.dfsg-1)
+Pre-Depends: x11-common (>= 1:7.0.0)
+Description: FreeType-based font drawing library for X
+ Xft provides a client-side font API for X applications, making the FreeType
+ font rasterizer available to X clients.  Fontconfig is used for font
+ specification resolution.  Where available, the RENDER extension handles
+ glyph drawing; otherwise, the core X protocol is used.
+Original-Maintainer: Debian X Strike Force <debian-x@xxxxxxxxxxxxxxxx>
+
+Package: fortune-mod
+Status: install ok installed
+Priority: optional
+Section: games
+Installed-Size: 144
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 1:1.99.1-3ubuntu3
+Replaces: fortune
+Provides: fortune
+Depends: libc6 (>= 2.6-1), librecode0 (>= 3.6), fortunes-min | fortune-cookie-db
+Suggests: xcontrib, bsdmainutils
+Conflicts: fortune
+Description: provides fortune cookies on demand
+ These are the machine-dependent parts of the fortune package, i.e.
+ the fortune program and the programs used for generating the data files.
+ The fortune package displays epigrams selected randomly from a selection
+ of fortune files. This is an enhanced version of the BSD program.
+ The data files (which can be shared) are contained in the 'fortunes-min',
+ 'fortunes', and 'fortunes-off' packages.
+Original-Maintainer: Pascal Hakim <pasc@xxxxxxxxxx>
+
+Package: libusplash0
+Status: install ok installed
+Priority: optional
+Section: misc
+Installed-Size: 488
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: usplash
+Version: 0.5.19
+Replaces: usplash (<< 0.4-40)
+Depends: libc6 (>= 2.7-1), libx86-1
+Description: userspace bootsplash library
+ This package contains the runtime library for the usplash package.
+Original-Maintainer: Matthew Garrett <mjg59@xxxxxxxxxxxxx>
+
+Package: dosfstools
+Status: install ok installed
+Priority: optional
+Section: otherosfs
+Installed-Size: 144
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 2.11-2.3ubuntu1
+Replaces: mkdosfs
+Depends: libc6 (>= 2.7-1)
+Conflicts: mkdosfs
+Description: Utilities to create and check MS-DOS FAT filesystems
+ Inside of this package there are two utilities (mkdosfs alias
+ mkfs.dos, and dosfsck alias fsck.msdos) to create and to check MS-DOS
+ FAT filesystems on either hard disks or floppies under Linux. This
+ version uses the enhanced boot sector/superblock format of DOS 3.3+
+ as well as provides a default dummy boot sector code.
+Original-Maintainer: Roman Hodek <roman@xxxxxxxxx>
+
+Package: ethtool
+Status: install ok installed
+Priority: extra
+Section: utils
+Installed-Size: 180
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 6-0
+Depends: libc6 (>= 2.6.1-1)
+Conflicts: sparc-utils (<< 1.9-1)
+Description: display or change ethernet card settings
+ ethtool is used for querying settings of an ethernet device and changing them.
+ .
+  Homepage: http://sourceforge.net/projects/gkernel/
+Original-Maintainer: Anibal Monsalve Salazar <anibal@xxxxxxxxxx>
+
+Package: xfonts-encodings
+Status: install ok installed
+Priority: optional
+Section: x11
+Installed-Size: 836
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: all
+Version: 1:1.0.2-3
+Replaces: xfonts-base (<< 1:1.0.0)
+Depends: x11-common
+Description: Encodings for X.Org fonts
+ This package contains the encodings that map to specific characters.
+Original-Maintainer: Debian X Strike Force <debian-x@xxxxxxxxxxxxxxxx>
+
+Package: libx11-6
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 1128
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: libx11
+Version: 2:1.1.3-1ubuntu2
+Depends: libc6 (>= 2.7-1), libx11-data, libxcb-xlib0, libxcb1
+Pre-Depends: x11-common (>= 1:7.0.0)
+Conflicts: xlibs-data (<< 1:7.0.0)
+Description: X11 client-side library
+ This package provides a client interface to the X Window System, otherwise
+ known as 'Xlib'.  It provides a complete API for the basic functions of the
+ window system.
+ .
+ More information about X.Org can be found at:
+ <URL:http://xorg.freedesktop.org>
+ <URL:http://lists.freedesktop.org/mailman/listinfo/xorg>
+Original-Maintainer: Debian X Strike Force <debian-x@xxxxxxxxxxxxxxxx>
+
+Package: libsensors3
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 308
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: lm-sensors
+Version: 1:2.10.5-3ubuntu1
+Depends: libc6 (>= 2.7-1), libsysfs2, makedev (>= 2.3.1-45) | udev
+Suggests: lm-sensors
+Description: library to read temperature/voltage/fan sensors
+ Lm-sensors is a hardware health monitoring package for Linux. It allows you
+ to access information from temperature, voltage, and fan speed sensors. It
+ works with most newer systems.
+ .
+ This package contains a shared library for querying lm-sensors.
+ .
+  Homepage: http://www.lm-sensors.org
+Original-Maintainer: Aurelien Jarno <aurel32@xxxxxxxxxx>
+
+Package: libjasper1
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 340
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: jasper
+Version: 1.900.1-3
+Replaces: libjasper-1.700-2
+Depends: libc6 (>= 2.5-0ubuntu1), libjpeg62
+Suggests: libjasper-runtime
+Conflicts: libjasper-1.700-2
+Description: The JasPer JPEG-2000 runtime library
+ JasPer is a collection of software (i.e., a library and application programs)
+ for the coding and manipulation of images.  This software can handle image
+ data in a variety of formats.  One such format supported by JasPer is the
+ JPEG-2000 format defined in ISO/IEC 15444-1:2000.
+ .
+ This package contains the shared library.
+Original-Maintainer: Roland Stigge <stigge@xxxxxxxxx>
+
+Package: e2fsprogs
+Essential: yes
+Status: install ok installed
+Priority: required
+Section: admin
+Installed-Size: 1740
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 1.40.8-2ubuntu2
+Replaces: hurd (<= 20040301-1), libblkid1 (<< 1.38+1.39-WIP-2005.12.10-2), libuuid1 (<< 1.38+1.39-WIP-2005.12.10-2)
+Pre-Depends: e2fslibs (= 1.40.8-2ubuntu2), libblkid1 (>= 1.34-1), libc6 (>= 2.7-1), libcomerr2 (>= 1.34-1), libss2 (>= 1.34-1), libuuid1 (>= 1.34-1)
+Suggests: e2fsck-static, gpart, parted
+Conflicts: dump (<< 0.4b4-4), initscripts (<< 2.85-4), quota (<< 1.55-8.1), sysvinit (<< 2.85-4)
+Conffiles:
+ /etc/mke2fs.conf 4ebb30bdb5951f1fc86c1470e4d81532
+ /etc/e2fsck.conf 71563145349a6c512471c495ad8d5143
+Description: ext2 file system utilities and libraries
+ EXT2 stands for "Extended Filesystem", version 2. It's the main
+ filesystem type used for hard disks on Debian and other Linux systems.
+ .
+ This package contains programs for creating, checking, and maintaining EXT2
+ filesystems, and the generic `fsck' wrapper.
+Original-Maintainer: Theodore Y. Ts'o <tytso@xxxxxxx>
+
+Package: libpaper1
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 108
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: libpaper
+Version: 1.1.23
+Replaces: libpaperg (<< 1.1.9)
+Provides: libpaperg
+Depends: libc6 (>= 2.6.1-1), debconf (>= 1.3.22) | debconf-2.0, ucf (>= 0.28)
+Recommends: libpaper-utils
+Description: library for handling paper characteristics
+ The libpaper paper-handling library automates recognition of many
+ different paper types and sizes for programs that need to deal with
+ printed output.
+Original-Maintainer: Giuseppe Sacco <eppesuig@xxxxxxxxxx>
+
+Package: ttf-malayalam-fonts
+Status: install ok installed
+Priority: optional
+Section: x11
+Installed-Size: 856
+Maintainer: Ubuntu MOTU Developers <ubuntu-motu@xxxxxxxxxxxxxxxx>
+Architecture: all
+Source: ttf-indic-fonts
+Version: 1:0.5.0-0ubuntu1
+Depends: defoma
+Recommends: ttf-indic-fonts-core
+Suggests: xserver-xfree86 | xserver | xfs, x-ttcidfont-conf
+Conffiles:
+ /etc/fonts/conf.d/ttf-malayalam-fonts.conf 0c3c912eb456b52e1c14be37ac43f3cb
+ /etc/defoma/hints/ttf-malayalam-fonts.hints 5d23c68636cec35cf21d89bcc3ea2c6b
+Description: Free TrueType fonts for the Malayalam language
+ This is a set of TrueType and OpenType fonts released under the GNU General
+ Public License for the Malayalam Language.
+Original-Maintainer: Debian-IN Team <debian-in-workers@xxxxxxxxxxxxxxxxxxxxxxx>
+
+Package: python-gobject
+Status: install ok installed
+Priority: optional
+Section: python
+Installed-Size: 520
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: pygobject
+Version: 2.14.1-2ubuntu2
+Replaces: python2.4-gobject
+Provides: python2.4-gobject, python2.5-gobject
+Depends: libc6 (>= 2.4), libffi4 (>= 4.1.1-21), libglib2.0-0 (>= 2.16.0), python (>= 2.4), python (<< 2.6), python-support (>= 0.7.1)
+Suggests: python-gobject-dbg
+Conflicts: python-gtk2 (<< 2.10), python2.4-gobject
+Description: Python bindings for the GObject library
+ GObject is an abstraction layer that allows to program with an object
+ paradigm that is compatible with many languages. It is a part of Glib,
+ the core library used to build GTK+ and GNOME.
+ .
+ This package contains the python bindings for GObject. It is mostly
+ used by other bindings to map their GObjects to python objects.
+Original-Maintainer: Josselin Mouette <joss@xxxxxxxxxx>
+Python-Version: 2.4, 2.5
+
+Package: libsigc++-2.0-0c2a
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 88
+Maintainer: Ubuntu Core developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: libsigc++-2.0
+Version: 2.0.17-2ubuntu3
+Replaces: libsigc++-1.9-0, libsigc++-2.0-0, libsigc++-2.0-0c2
+Depends: libc6 (>= 2.7-1), libgcc1 (>= 1:4.1.1-21), libstdc++6 (>= 4.1.1-21)
+Conflicts: libsigc++-1.9-0, libsigc++-2.0-0, libsigc++-2.0-0c2
+Description: type-safe Signal Framework for C++ - runtime
+ This library implements a full callback system for use in widget
+ libraries, abstract interfaces, and general programming. It provides
+ the ability to connect an abstract callback to a class method,
+ function, or function object, and contains adaptor classes for the
+ connection of dissimilar callbacks.
+ .
+ These are the runtime files for libsigc++, needed only if you wish to
+ run software which depends on it.
+Original-Maintainer: Daniel Burrows <dburrows@xxxxxxxxxx>
+
+Package: acl
+Status: install ok installed
+Priority: optional
+Section: utils
+Installed-Size: 260
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 2.2.45-1
+Depends: libacl1 (>= 2.2.11-1), libattr1 (>= 2.4.4-1), libc6 (>= 2.6.1-1)
+Description: Access control list utilities
+ This package contains the getfacl and setfacl utilities needed for
+ manipulating access control lists.
+ .
+  Homepage: http://oss.sgi.com/projects/xfs/
+Original-Maintainer: Nathan Scott <nathans@xxxxxxxxxx>
+
+Package: libatk1.0-0
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 172
+Maintainer: Ubuntu Accessibility Developers <ubuntu-accessibility-devel@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: atk1.0
+Version: 1.22.0-0ubuntu1
+Depends: libc6 (>= 2.7-1), libglib2.0-0 (>= 2.15.6)
+Recommends: libatk1.0-data
+Description: The ATK accessibility toolkit
+ ATK is a toolkit providing accessibility interfaces for applications or
+ other toolkits. By implementing these interfaces, those other toolkits or
+ applications can be used with tools such as screen readers, magnifiers, and
+ other alternative input devices.
+ .
+ This is the runtime part of ATK, needed to run applications built with it.
+Original-Maintainer: Debian GNOME Maintainers <pkg-gnome-maintainers@xxxxxxxxxxxxxxxxxxxxxxx>
+
+Package: python-central
+Status: install ok installed
+Priority: standard
+Section: python
+Installed-Size: 236
+Maintainer: Matthias Klose <doko@xxxxxxxxxx>
+Architecture: all
+Version: 0.6.7ubuntu0.1
+Depends: python (>= 2.4.3-10)
+Conflicts: debhelper (<< 5.0.37.3ubuntu2)
+Description: register and build utility for Python packages
+ This package provides support for building and installing
+ python modules independent of the current installed Python
+ version.
+
+Package: netcat-traditional
+Status: install ok installed
+Priority: important
+Section: net
+Installed-Size: 240
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: netcat
+Version: 1.10-36
+Provides: netcat
+Depends: libc6 (>= 2.7-1)
+Description: TCP/IP swiss army knife
+ A simple Unix utility which reads and writes data across network
+ connections using TCP or UDP protocol. It is designed to be a reliable
+ "back-end" tool that can be used directly or easily driven by other
+ programs and scripts. At the same time it is a feature-rich network
+ debugging and exploration tool, since it can create almost any kind
+ of connection you would need and has several interesting built-in
+ capabilities.
+ .
+ This is the "classic" netcat, written by *Hobbit*. It lacks many
+ features found in netcat-openbsd.
+Original-Maintainer: Decklin Foster <decklin@xxxxxxxxxxxx>
+
+Package: libcroco3
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 316
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: libcroco
+Version: 0.6.1-1build2
+Depends: libc6 (>= 2.6), libglib2.0-0 (>= 2.13.7), libxml2 (>= 2.6.29)
+Description: a generic Cascading Style Sheet (CSS) parsing and manipulation toolkit
+ Services provided by Libcroco
+  * A parser module that provides
+    o A SAC like api. SAC stands for Simple Api for CSS. SAC is an event driven
+      api wich resembles SAX in the xml world.
+    o A CSSOM like api. CSSOM stands for Cascading Style Sheet Object Model.
+ .
+    The libcroco parser implements the CSS Level 2 specification, the CSS
+    forward compatibility rules and the CSS cascading rules.
+ .
+  * A CSS2 selection engine
+    Given an xml element node (that obviously comes from an xml document) and
+    a stylesheet cascade, the Libcroco selection engine can evaluate the css
+    selectors of the cascade and return the style properties associated to
+    the xml element node.
+ .
+    Note that the xml manipulation toolkit used by the libcroco selection
+    engine at the moment is libxml2.
+ .
+ This package contains the shared libraries.
+Original-Maintainer: Sebastien Bacher <seb128@xxxxxxxxxx>
+
+Package: libmagick10
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 11756
+Maintainer: Ubuntu Core developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: imagemagick
+Version: 7:6.3.7.9.dfsg1-2ubuntu1
+Depends: libbz2-1.0, libc6 (>= 2.7-1), libdjvulibre15 (>= 3.5.20), libexpat1 (>= 1.95.8), libfontconfig1 (>= 2.4.0), libfreetype6 (>= 2.3.5), libglib2.0-0 (>= 2.15.5), libgraphviz4 (>= 2.16), libgtk2.0-0 (>= 2.12.0), libice6 (>= 1:1.0.0), libjasper1 (>= 1.900.1), libjpeg62, liblcms1 (>= 1.15-1), libltdl3 (>= 1.5.2-2), libopenexr2ldbl (>= 1.2.2), libpng12-0 (>= 1.2.13-4), librsvg2-2 (>= 2.18.1), libsm6, libtiff4, libwmf0.2-7 (>= 0.2.8.4), libx11-6, libxext6, libxml2 (>= 2.6.27), libxt6, zlib1g (>= 1:1.2.3.3.dfsg-1)
+Recommends: ghostscript, gsfonts
+Suggests: html2ps, libwmf-bin
+Description: image manipulation library
+ LibMagick supports loading and saving a very large set of image formats.
+ It allows a lot of image manipulation as well.
+ .
+ This package contains the C libraries needed to run executables that make
+ use of libMagick.
+Homepage: http://www.imagemagick.org/
+Original-Maintainer: Luciano Bello <luciano@xxxxxxxxxx>
+
+Package: libavahi-common3
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 120
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: avahi
+Version: 0.6.22-2ubuntu4
+Depends: libavahi-common-data, libc6 (>= 2.7-1)
+Description: Avahi common library
+ Avahi is a fully LGPL framework for Multicast DNS Service Discovery.
+ It allows programs to publish and discover services and hosts
+ running on a local network with no specific configuration.  For
+ example you can plug into a network and instantly find printers to
+ print to, files to look at and people to talk to.
+ .
+ This package contains the Avahi common library, which is a set of common
+ functions used by many of Avahis components and client applications.
+Homepage: http://avahi.org/
+Original-Maintainer: Utopia Maintenance Team <pkg-utopia-maintainers@xxxxxxxxxxxxxxxxxxxxxxx>
+
+Package: cpp
+Status: install ok installed
+Priority: optional
+Section: interpreters
+Installed-Size: 96
+Maintainer: Ubuntu Core developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: gcc-defaults (1.62ubuntu6)
+Version: 4:4.2.3-1ubuntu6
+Depends: cpp-4.2 (>= 4.2.3-1)
+Suggests: cpp-doc
+Conflicts: cpp-doc (<< 1:2.95.3)
+Description: The GNU C preprocessor (cpp)
+ The GNU C preprocessor is a macro processor that is used automatically
+ by the GNU C compiler to transform programs before actual compilation.
+ .
+ This package has been separated from gcc for the benefit of those who
+ require the preprocessor but not the compiler.
+ .
+ This is a dependency package providing the default GNU C preprocessor.
+Original-Maintainer: Debian GCC Maintainers <debian-gcc@xxxxxxxxxxxxxxxx>
+
+Package: libnss-mdns
+Status: install ok installed
+Priority: optional
+Section: admin
+Installed-Size: 132
+Maintainer: Ubuntu Core developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: nss-mdns
+Version: 0.10-3ubuntu2
+Depends: avahi-daemon (>= 0.6.16-1), base-files (>= 3.1.10), libc6 (>= 2.4), perl
+Suggests: avahi-autoipd | zeroconf
+Description: NSS module for Multicast DNS name resolution
+ nss-mdns is a plugin for the GNU Name Service Switch (NSS) functionality
+ of the GNU C Library (glibc) providing host name resolution via Multicast
+ DNS (using Zeroconf, aka Apple Bonjour / Apple Rendezvous ), effectively
+ allowing name resolution by common Unix/Linux programs in the ad-hoc mDNS
+ domain .local.
+Original-Maintainer: Utopia Maintenance Team <pkg-utopia-maintainers@xxxxxxxxxxxxxxxxxxxxxxx>
+
+Package: libchromexvmcpro1
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 112
+Maintainer: Ubuntu MOTU <ubuntu-motu@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: xserver-xorg-video-openchrome
+Version: 1:0.2.901-0ubuntu4
+Replaces: libviaxvmcpro1
+Depends: libc6 (>= 2.7-1), libdrm2 (>= 2.3.0)
+Conflicts: libviaxvmcpro1
+Description: XvMC Pro Libraries used by the Openchrome VIA driver
+ OpenChrome is a project for the development of free and open-source software
+ for the VIA UniChrome video chipsets.
+ .
+ This package provides the XVMC libraries used by the xorg driver.
+Original-Maintainer: Eric Work <work.eric@xxxxxxxxx>
+
+Package: xserver-xorg-video-mga
+Status: install ok installed
+Priority: optional
+Section: x11
+Installed-Size: 276
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 1:1.4.8.dfsg.1-1
+Replaces: xserver-xorg (<< 6.8.2-35), xserver-xorg-driver-mga
+Provides: xserver-xorg-video-2
+Depends: libc6 (>= 2.7-1), xserver-xorg-core (>= 2:1.4)
+Conflicts: xserver-xorg-driver-mga
+Description: X.Org X server -- MGA display driver
+ This package provides the driver for the Matrox MGA family of chipsets,
+ including Matrox Millennium and Mystique cards.
+ .
+ More information about X.Org can be found at:
+ <URL:http://www.X.org>
+ <URL:http://xorg.freedesktop.org>
+ <URL:http://lists.freedesktop.org/mailman/listinfo/xorg>
+ .
+ This package is built from the X.org xf86-video-mga driver module.
+Original-Maintainer: Debian X Strike Force <debian-x@xxxxxxxxxxxxxxxx>
+
+Package: xutils
+Status: install ok installed
+Priority: optional
+Section: x11
+Installed-Size: 24
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: all
+Source: xorg
+Version: 1:7.3+10ubuntu10.2
+Depends: x11-common, x11-session-utils, x11-utils, x11-xfs-utils, x11-xserver-utils, xfonts-utils, xutils-dev
+Description: X Window System utility programs metapackage
+ xutils provides a set of utility programs shipped with the X Window System.
+ Many of these programs are useful even on a system that does not have any X
+ clients or X servers installed.
+ .
+ This package is provided for transition from earlier Debian releases, the
+ programs formerly in xutils and xbase-clients having been split out in smaller
+ packages.
+Original-Maintainer: Debian X Strike Force <debian-x@xxxxxxxxxxxxxxxx>
+
+Package: hotkey-setup
+Status: install ok installed
+Priority: optional
+Section: misc
+Installed-Size: 172
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 0.1-17ubuntu21
+Depends: dmidecode (>= 2.7), laptop-detect, sysv-rc (>= 2.86.ds1-14.1ubuntu2)
+Conflicts: tpb
+Conffiles:
+ /etc/init.d/hotkey-setup e442a3f75ae656493cf1ea8e4e051cc8
+Description: auto-configures laptop hotkeys
+ This package will attempt to auto-detect your laptop hardware and then
+ configure its hotkeys to produce useful keycodes. These can then be used by
+ userspace applications.
+Original-Maintainer: Matthew Garrett <mjg59@xxxxxxxxxxxxx>
+
+Package: poppler-utils
+Status: install ok installed
+Priority: optional
+Section: utils
+Installed-Size: 268
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: poppler
+Version: 0.6.4-1ubuntu2
+Replaces: pdftohtml, xpdf-reader, xpdf-utils
+Provides: pdftohtml, xpdf-utils
+Depends: libc6 (>= 2.4), libfontconfig1 (>= 2.4.0), libgcc1 (>= 1:4.1.1-21), libpoppler2 (>= 0.6), libstdc++6 (>= 4.1.1-21), libxml2 (>= 2.6.27)
+Recommends: ghostscript
+Conflicts: pdftohtml (<< 0.36-14), xpdf-utils
+Description: PDF utilitites (based on libpoppler)
+ This package contains pdftops (PDF to PostScript converter), pdfinfo
+ (PDF document information extractor), pdfimages (PDF image extractor),
+ pdftohtml (PDF to HTML converter), pdftotext (PDF to text converter),
+ and pdffonts (PDF font analyzer).
+Original-Maintainer: Ondřej Surý <ondrej@xxxxxxxxxx>
+
+Package: xserver-xorg-video-i128
+Status: install ok installed
+Priority: optional
+Section: x11
+Installed-Size: 144
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 1:1.2.1-4
+Replaces: xserver-xorg (<< 6.8.2-35), xserver-xorg-driver-i128
+Provides: xserver-xorg-video-2
+Depends: libc6 (>= 2.6.1-1), xserver-xorg-core (>= 2:1.4)
+Conflicts: xserver-xorg-driver-i128
+Description: X.Org X server -- i128 display driver
+ This package provides the driver for Number 9 Imagine (I128) video cards.
+ .
+ More information about X.Org can be found at:
+ <URL:http://www.X.org>
+ <URL:http://xorg.freedesktop.org>
+ <URL:http://lists.freedesktop.org/mailman/listinfo/xorg>
+ .
+ This package is built from the X.org xf86-video-i128 driver module.
+Original-Maintainer: Debian X Strike Force <debian-x@xxxxxxxxxxxxxxxx>
+
+Package: gzip
+Essential: yes
+Status: install ok installed
+Priority: required
+Section: utils
+Installed-Size: 288
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 1.3.12-3.2
+Depends: debianutils (>= 1.6)
+Pre-Depends: libc6 (>= 2.6.1-1)
+Suggests: less
+Description: The GNU compression utility
+ This is the standard GNU file compression utility, which is also the default
+ compression tool for Debian.  It typically operates on files with names
+ ending in '.gz'.
+ .
+ This package can also decompress '.Z' files created with 'compress'.
+Original-Maintainer: Bdale Garbee <bdale@xxxxxxx>
+
+Package: libwww-perl
+Status: install ok installed
+Priority: optional
+Section: perl
+Installed-Size: 1000
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: all
+Version: 5.808-1
+Depends: libdigest-md5-perl, libhtml-parser-perl (>= 3.33), libhtml-tagset-perl, libhtml-tree-perl (>= 3.11), libmime-base64-perl (>= 2.1) | perl (>= 5.8), libnet-perl (>= 1:1.09) | perl (>= 5.8.1), liburi-perl (>= 1.10), netbase, perl (>= 5.6.0-16)
+Recommends: libcompress-zlib-perl, libhtml-format-perl, libmailtools-perl
+Suggests: libio-socket-ssl-perl (>= 0.81-2)
+Description: WWW client/server library for Perl (aka LWP)
+ Libwww-perl is a collection of Perl modules which provides a simple
+ and consistent programming interface (API) to the World-Wide Web.  The
+ main focus of the library is to provide classes and functions that
+ allow you to write WWW clients, thus libwww-perl said to be a WWW
+ client library. The library also contain modules that are of more
+ general use, as well as a simple HTTP/1.1-compatible server
+ implementation.
+Original-Maintainer: Debian Perl Group <pkg-perl-maintainers@xxxxxxxxxxxxxxxxxxxxxxx>
+Homepage: http://search.cpan.org/dist/libwww-perl/
+
+Package: xserver-xorg-video-vga
+Status: install ok installed
+Priority: optional
+Section: x11
+Installed-Size: 92
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 1:4.1.0-8
+Replaces: xserver-xorg (<< 6.8.2-35), xserver-xorg-driver-vga
+Provides: xserver-xorg-video-2
+Depends: libc6 (>= 2.6.1-1), xserver-xorg-core (>= 2:1.4)
+Conflicts: xserver-xorg-driver-vga
+Description: X.Org X server -- VGA display driver
+ This driver for the X.Org X server (see xserver-xorg for a further description)
+ uses the standard VGA interface provided on all video cards, but runs
+ unaccelerated.  This driver is not recommended for use, because it will run
+ very slowly, and at a substandard resolution and colour depth.  If you have
+ substantial problems with the normal driver for your card, please consider
+ using the VESA driver (xserver-xorg-video-vesa), as that will allow you to run
+ at a better resolution and colour depth.
+ .
+ More information about X.Org can be found at:
+ <URL:http://www.X.org>
+ <URL:http://xorg.freedesktop.org>
+ <URL:http://lists.freedesktop.org/mailman/listinfo/xorg>
+ .
+ This package is built from the X.org xf86-video-vga driver module.
+Original-Maintainer: Debian X Strike Force <debian-x@xxxxxxxxxxxxxxxx>
+
+Package: linux-restricted-modules-generic
+Status: install ok installed
+Priority: optional
+Section: restricted/metapackages
+Installed-Size: 52
+Maintainer: Ubuntu Kernel Team <kernel-team@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: linux-meta
+Version: 2.6.24.19.21
+Depends: linux-restricted-modules-2.6.24-19-generic
+Description: Restricted Linux modules for generic kernels
+ This package will always depend on the latest restricted modules available
+ for generic kernels.
+
+Package: dpkg
+Essential: yes
+Status: install ok installed
+Priority: required
+Section: admin
+Installed-Size: 7004
+Origin: debian
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Bugs: debbugs://bugs.debian.org
+Architecture: i386
+Version: 1.14.16.6ubuntu4
+Replaces: dpkg-doc-ja, dpkg-static, manpages-de (<= 0.4-3), manpages-pl (<= 20051117-1)
+Pre-Depends: coreutils (>= 5.93-1), libc6 (>= 2.4), lzma
+Suggests: apt
+Breaks: apt (<< 0.7.6ubuntu6), aptitude (<< 0.4.6.1-1ubuntu2), dpkg-dev (= 1.14.13), dpkg-dev (= 1.14.14), dpkg-dev (<< 1.14.6)
+Conflicts: dpkg-iasearch (<< 0.11), dpkg-static, sysvinit (<< 2.82-1)
+Conffiles:
+ /etc/dpkg/dpkg.cfg a56f60fb9ab2a5cfe8ea3b30ea6fa35c
+ /etc/dpkg/origins/debian 731423fa8ba067262f8ef37882d1e742
+ /etc/alternatives/README 69c4ba7f08363e998e0f2e244a04f881
+ /etc/logrotate.d/dpkg 501f8c90b83c7ea180868ca82e1e82d1
+Description: package maintenance system for Debian
+ This package contains the low-level commands for handling the installation
+ and removal of packages on your system.
+ .
+ In order to unpack and build Debian source packages you will need to
+ install the developers' package `dpkg-dev' as well as this one.
+Homepage: http://wiki.debian.org/Teams/Dpkg
+Original-Maintainer: Dpkg Developers <debian-dpkg@xxxxxxxxxxxxxxxx>
+
+Package: libgpmg1
+Status: install ok installed
+Priority: standard
+Section: libs
+Installed-Size: 108
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: gpm
+Version: 1.19.6-25ubuntu1
+Depends: libc6 (>= 2.7-1)
+Suggests: gpm
+Conflicts: libgpm1 (<< 1.12-3)
+Description: General Purpose Mouse - shared library
+ This package provides a library that handles mouse requests
+ and delivers them to applications. See the description for the 'gpm'
+ package for more information.
+Original-Maintainer: Debian GPM Team <pkg-gpm-devel@xxxxxxxxxxxxxxxxxxxxxxx>
+
+Package: xresprobe
+Status: install ok installed
+Priority: optional
+Section: x11
+Installed-Size: 96
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 0.4.24ubuntu8
+Replaces: kudzu-vesa
+Provides: kudzu-vesa
+Depends: libc6 (>= 2.6-1)
+Recommends: laptop-detect
+Conflicts: kudzu-vesa
+Description: X Resolution Probe
+ xresprobe is a package that probes both laptop and DDC-compliant screens for
+ their standard resolutions, and returns a specifically-formatted, easy-to-parse
+ output.
+ .
+ It contains the 'ddcprobe' package, which performs a DDC probe to the monitor;
+ however, ddcprobe only works on i386 and powerpc. The laptop detection routines
+ are, however, sufficiently generic to to be useful to other architectures.
+Original-Maintainer: Debian X Strike Force <debian-x@xxxxxxxxxxxxxxxx>
+
+Package: libchromexvmc1
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 108
+Maintainer: Ubuntu MOTU <ubuntu-motu@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: xserver-xorg-video-openchrome
+Version: 1:0.2.901-0ubuntu4
+Replaces: libviaxvmc1
+Depends: libc6 (>= 2.7-1), libdrm2 (>= 2.3.0)
+Conflicts: libviaxvmc1
+Description: XvMC Libraries used by the Openchrome VIA driver
+ OpenChrome is a project for the development of free and open-source software
+ for the VIA UniChrome video chipsets.
+ .
+ This package provides the XVMC libraries used by the xorg driver.
+Original-Maintainer: Eric Work <work.eric@xxxxxxxxx>
+
+Package: libpcre3
+Status: install ok installed
+Priority: important
+Section: libs
+Installed-Size: 404
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: pcre3
+Version: 7.4-1ubuntu2
+Depends: libc6 (>= 2.7-1)
+Conflicts: libpcre3-dev (<= 4.3-3)
+Description: Perl 5 Compatible Regular Expression Library - runtime files
+ This is a library of functions to support regular expressions whose syntax
+ and semantics are as close as possible to those of the Perl 5 language.
+ .
+ This package contains the runtime libraries.
+Original-Maintainer: Mark Baker <mark@xxxxxxxxxx>
+
+Package: aptitude
+Status: install ok installed
+Priority: important
+Section: admin
+Installed-Size: 7592
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 0.4.9-2ubuntu5
+Depends: libapt-pkg-libc6.7-6-4.6, libc6 (>= 2.7-1), libcwidget3, libgcc1 (>= 1:4.1.1-21), libncursesw5 (>= 5.6+20071006-3), libsigc++-2.0-0c2a (>= 2.0.2), libstdc++6 (>= 4.2.1-4)
+Recommends: aptitude-doc-en | aptitude-doc, libparse-debianchangelog-perl
+Suggests: debtags, tasksel
+Conffiles:
+ /etc/apt/apt.conf.d/05aptitude 85b39c8f9413a8f29ddcce844d026929
+ /etc/cron.daily/aptitude f934222d5eb13cb132e2751bdb023318
+ /etc/logrotate.d/aptitude fb66bc5dc8c13edbcb83cea15ff86959
+Description: terminal-based package manager
+ aptitude is a terminal-based package managemer with a number of
+ useful features, including: a mutt-like syntax for matching packages
+ in a flexible manner, dselect-like persistence of user actions, the
+ ability to retrieve and display the Debian changelog of most
+ packages, and a command-line mode similar to that of apt-get.
+ .
+ aptitude is also Y2K-compliant, non-fattening, naturally cleansing,
+ and housebroken.
+Original-Maintainer: Daniel Burrows <dburrows@xxxxxxxxxx>
+
+Package: libisc32
+Status: install ok installed
+Priority: standard
+Section: libs
+Installed-Size: 332
+Maintainer: LaMont Jones <lamont@xxxxxxxxxx>
+Architecture: i386
+Source: bind9
+Version: 1:9.4.2-10
+Replaces: libbind0
+Depends: libc6 (>= 2.4)
+Conflicts: libbind0
+Description: ISC Shared Library used by BIND
+ The Berkeley Internet Name Domain (BIND) implements an Internet domain
+ name server.  BIND is the most widely-used name server software on the
+ Internet, and is supported by the Internet Software Consortium, www.isc.org.
+ .
+ This package delivers the libisc shared library used by BIND's daemons and
+ clients.
+
+Package: iso-codes
+Status: install ok installed
+Priority: optional
+Section: misc
+Installed-Size: 7700
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: all
+Version: 1.7-1ubuntu1
+Description: ISO language, territory, currency, script codes and their translations
+ This package provides the ISO 639 language code list, the
+ ISO 4217 currency code list, the ISO 3166 territory code list,
+ the ISO 3166-2 sub-territory list, and the ISO 15924 script code
+ list.
+ .
+ It also (more importantly) provides their translations in .po form.
+Original-Maintainer: Alastair McKinstry <mckinstry@xxxxxxxxxx>
+Homepage: http://pkg-isocodes.alioth.debian.org/
+
+Package: x-ttcidfont-conf
+Status: install ok installed
+Priority: optional
+Section: x11
+Installed-Size: 152
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: all
+Version: 27
+Depends: debconf (>= 0.5) | debconf-2.0, defoma (>= 0.5.0), xfonts-encodings (>= 1:1.0.0-5.1) | xfonts-base (<< 1:1), xutils
+Conflicts: psfontmgr (<= 0.4.0)
+Conffiles:
+ /etc/defoma/config/x-ttcidfont-conf.conf2 83a31934eb3581a74cf0932317de141f
+Description: TrueType and CID fonts configuration for X
+ This package configures TrueType fonts and CID fonts (as well as CMaps)
+ for X. It generates .scale and .alias files from TrueType and CID
+ fonts registered to Defoma, and calls mkfontdir (and mkcfm).
+ .
+ The package supports both X-TT and FreeType X backends.
+Original-Maintainer: Anibal Monsalve Salazar <anibal@xxxxxxxxxx>
+
+Package: libncursesw5
+Status: install ok installed
+Priority: important
+Section: libs
+Installed-Size: 456
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: ncurses
+Version: 5.6+20071124-1ubuntu2
+Depends: libc6 (>= 2.7-1)
+Recommends: libgpmg1
+Description: Shared libraries for terminal handling (wide character support)
+ This package contains the shared libraries necessary to run programs
+ compiled with ncursesw, which includes support for wide characters.
+Original-Maintainer: Daniel Baumann <daniel@xxxxxxxxxx>
+
+Package: liblocale-gettext-perl
+Status: install ok installed
+Priority: important
+Section: perl
+Installed-Size: 104
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 1.05-2ubuntu1
+Depends: libc6 (>= 2.2), perl-base (>= 5.8.8-6), perlapi-5.8.8
+Description: Using libc functions for internationalization in Perl
+ The gettext module permits access from perl to the gettext() family of
+ functions for retrieving message strings from databases constructed
+ to internationalize software.
+ .
+ It provides gettext(), dgettext(), dcgettext(), textdomain(),
+ bindtextdomain(), bind_textdomain_codeset(), ngettext(), dcngettext()
+ and dngettext().
+Homepage: http://search.cpan.org/dist/Locale-gettext/
+Original-Maintainer: Debian Perl Group <pkg-perl-maintainers@xxxxxxxxxxxxxxxxxxxxxxx>
+
+Package: ubuntu-keyring
+Status: install ok installed
+Priority: important
+Section: misc
+Installed-Size: 56
+Maintainer: Michael Vogt <michael.vogt@xxxxxxxxxxxxx>
+Architecture: all
+Version: 2008.03.04
+Depends: gnupg (>= 1.0.6-4)
+Description: GnuPG keys of the Ubuntu archive
+ The Ubuntu project digitally signs its Release files. This package
+ contains the archive keys used for that.
+
+Package: acpi
+Status: install ok installed
+Priority: optional
+Section: utils
+Installed-Size: 84
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 0.09-3ubuntu1
+Depends: libc6 (>= 2.6-1)
+Description: displays information on ACPI devices
+ Attempts to replicate the functionality of the 'old' apm command on
+ ACPI systems, including battery and thermal information. Does not support
+ ACPI suspending, only displays information about ACPI devices.
+Original-Maintainer: Joey Hess <joeyh@xxxxxxxxxx>
+
+Package: xbitmaps
+Status: install ok installed
+Priority: optional
+Section: x11
+Installed-Size: 468
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: all
+Version: 1.0.1-2ubuntu1
+Replaces: xlibs-data (<< 6.8.2-35)
+Pre-Depends: x11-common (>= 7.0.0-0ubuntu3)
+Conflicts: xlibs-data (<< 6.8.2-35)
+Description: Base X bitmaps
+ This package contains the base X bitmaps, which are used in many legacy X
+ clients.
+Original-Maintainer: Debian X Strike Force <debian-x@xxxxxxxxxxxxxxxx>
+
+Package: libavahi-compat-libdnssd1
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 104
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: avahi
+Version: 0.6.22-2ubuntu4
+Depends: libavahi-client3 (>= 0.6.13), libavahi-common3 (>= 0.6.10), libc6 (>= 2.7-1)
+Recommends: libnss-mdns
+Description: Avahi Apple Bonjour compatibility library
+ Avahi is a fully LGPL framework for Multicast DNS Service Discovery.
+ It allows programs to publish and discover services and hosts
+ running on a local network with no specific configuration.  For
+ example you can plug into a network and instantly find printers to
+ print to, files to look at and people to talk to.
+ .
+ This library contains the Apple Bonjour compatibility library of Avahi.
+Homepage: http://avahi.org/
+Original-Maintainer: Utopia Maintenance Team <pkg-utopia-maintainers@xxxxxxxxxxxxxxxxxxxxxxx>
+
+Package: anacron
+Status: install ok installed
+Priority: optional
+Section: admin
+Installed-Size: 224
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 2.3-13ubuntu2
+Replaces: pe
+Depends: libc6 (>= 2.5-0ubuntu1), debianutils (>= 1.7), lsb-base (>= 3.0-10)
+Recommends: cron (>= 3.0pl1-43), postfix | mail-transport-agent, sysklogd | system-log-daemon
+Suggests: powermgmt-base
+Conffiles:
+ /etc/cron.d/anacron 621be9beef2b1af778fa4c0dd61332a7
+ /etc/init.d/anacron 443a5ccb13e5eb63cfaf4c1e7e756630
+ /etc/cron.daily/0anacron a46c5cc26a2a6715d0155781ddd07a19
+ /etc/cron.weekly/0anacron b2c55b2905f28b3b53bdf3e2d66e830b
+ /etc/cron.monthly/0anacron 402ac7af3ebd2da5dddcd3712d776ae3
+ /etc/apm/event.d/anacron 651f3c7f79a14332f9fa7bb368039210
+ /etc/acpi/ac.d/85-anacron.sh 76bfc942ad98b8ef19ee1709671f268d
+ /etc/acpi/battery.d/15-anacron.sh 5cb6c5a594f42fa87c3bf136506b6a8f
+ /etc/acpi/resume.d/85-anacron.sh 76bfc942ad98b8ef19ee1709671f268d
+ /etc/acpi/suspend.d/15-anacron.sh 5cb6c5a594f42fa87c3bf136506b6a8f
+ /etc/anacrontab 2941547ebec4a1bd8019e4c102a3d83e
+Description: cron-like program that doesn't go by time
+ Anacron (like `anac(h)ronistic') is a periodic command scheduler.  It
+ executes commands at intervals specified in days.  Unlike cron, it
+ does not assume that the system is running continuously.  It can
+ therefore be used to control the execution of daily, weekly and
+ monthly jobs (or anything with a period of n days), on systems that
+ don't run 24 hours a day.  When installed and configured properly,
+ Anacron will make sure that the commands are run at the specified
+ intervals as closely as machine-uptime permits.
+ .
+ This package is pre-configured to execute the daily jobs of the Debian
+ system. You should install this program if your system isn't powered on
+ 24 hours a day to make sure the maintenance jobs of other Debian packages
+ are executed each day.
+Original-Maintainer: Pascal Hakim <pasc@xxxxxxxxxx>
+
+Package: info
+Status: install ok installed
+Priority: important
+Section: doc
+Installed-Size: 356
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: texinfo
+Version: 4.11.dfsg.1-4
+Replaces: texinfo (<< 4.7-2)
+Provides: info-browser
+Depends: libc6 (>= 2.7-1), libncurses5 (>= 5.6+20071006-3)
+Suggests: texinfo-doc-nonfree
+Conflicts: xemacs-support
+Description: Standalone GNU Info documentation browser
+ The Info file format is an easily-parsable representation for online
+ documents. This program allows you to view Info documents, like the
+ ones stored in /usr/share/info.
+ .
+ Much of the software in Debian comes with its online documentation in
+ the form of Info files, so it is most likely you will want to install it.
+Original-Maintainer: Debian TeX maintainers <debian-tex-maint@xxxxxxxxxxxxxxxx>
+
+Package: dmsetup
+Status: install ok installed
+Priority: optional
+Section: admin
+Installed-Size: 144
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: devmapper
+Version: 2:1.02.20-2ubuntu2
+Replaces: multipath-tools (<< 0.4.7-1.1ubuntu2)
+Depends: libc6 (>= 2.7-1), libdevmapper1.02.1 (>= 2:1.02.20), libselinux1 (>= 2.0.15), libsepol1 (>= 2.0.3)
+Breaks: udev (<< 113-0ubuntu1)
+Conffiles:
+ /etc/udev/rules.d/65-dmsetup.rules 38d051ce4af1016e726a4101bba63549
+Description: The Linux Kernel Device Mapper userspace library
+ The Linux Kernel Device Mapper is the LVM (Linux Logical Volume Management)
+ Team's implementation of a minimalistic kernel-space driver that handles
+ volume management, while keeping knowledge of the underlying device layout
+ in user-space.  This makes it useful for not only LVM, but EVMS, software
+ raid, and other drivers that create "virtual" block devices.
+ .
+ This package contains a utility for modifying device mappings.
+Original-Maintainer: Debian LVM Team <pkg-lvm-maintainers@xxxxxxxxxxxxxxxxxxxxxxx>
+
+Package: min12xxw
+Status: install ok installed
+Priority: optional
+Section: graphics
+Installed-Size: 136
+Maintainer: Stefan Potyra <sistpoty@xxxxxxxxxx>
+Architecture: i386
+Version: 0.0.9-1build1
+Depends: libc6 (>= 2.5-0ubuntu1)
+Recommends: cupsys, foomatic-filters-ppds
+Description: Printer driver for KonicaMinolta PagePro 1[234]xxW
+ A cups/foomatic printer driver for the KonicaMinolta PagePro 1200W, 1250W,
+ 1300W, 1350W and 1400W.
+ .
+ More Information available at http://www.hinterbergen.de/mala/min12xxw/
+
+Package: eject
+Status: install ok installed
+Priority: optional
+Section: utils
+Installed-Size: 288
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 2.1.5-6
+Depends: libc6 (>= 2.6.1-1), libdevmapper1.02.1
+Suggests: cdtool, setcd
+Description: ejects CDs and operates CD-Changers under Linux
+ This little program will eject CD-ROMs (assuming your drive supports
+ the CDROMEJECT ioctl). It also allows setting the autoeject feature.
+ .
+ On supported ATAPI/IDE multi-disc CD-ROM changers, it allows changing
+ the active disc.
+ .
+ You can also use eject to properly disconnect external mass-storage
+ devices like digital cameras or portable music players.
+Original-Maintainer: Frank Lichtenheld <djpig@xxxxxxxxxx>
+
+Package: libhunspell-1.1-0
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 296
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: hunspell
+Version: 1.1.9-1
+Depends: libc6 (>= 2.6.1-1), libgcc1 (>= 1:4.2.1), libstdc++6 (>= 4.2.1)
+Conflicts: openoffice.org-core (= 2.2.0~rc2-1)
+Description: spell checker and morphological analyzer (shared library)
+ Hunspell is a spell checker and morphological analyzer library and program
+ designed for languages with rich morphology and complex word compounding or
+ character encoding. It is based on MySpell and features an Ispell-like
+ terminal interface using Curses library, an Ispell pipe interface and an
+ OpenOffice.org UNO module.
+ .
+ Main features:
+  - Unicode support (first 65535 Unicode character)
+  - morphological analysis (in custom item and arrangement style)
+  - Max. 65535 affix classes and twofold affix stripping (for agglutinative
+    languages, like Azeri, Basque, Estonian, Finnish, Hungarian, Turkish, etc.)
+  - Support complex compoundings (for example, Hungarian and German)
+  - Support language specific algorithms (for example, handling Azeri
+    and Turkish dotted i, or German sharp s)
+  - Handling conditional affixes, circumfixes, fogemorphemes,
+    forbidden words, pseudoroots and homonyms.
+ .
+ This package contains the shared library.
+Original-Maintainer: Debian OpenOffice Team <debian-openoffice@xxxxxxxxxxxxxxxx>
+
+Package: alsa-utils
+Status: install ok installed
+Priority: optional
+Section: sound
+Installed-Size: 1828
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 1.0.15-3ubuntu2
+Provides: audio-mixer
+Depends: libasound2 (>> 1.0.14), libc6 (>= 2.7-1), libncurses5 (>= 5.6+20071006-3), linux-sound-base (>= 1.0.15-1), lsb-base (>= 3.0-9), module-init-tools, pciutils (>= 1:2.1.11-4), python, whiptail | dialog
+Recommends: alsa-base (>= 1.0.15-1), udev (>= 0.096-1)
+Conflicts: alsa-base (<< 1.0.9b-3), udev (<< 0.060)
+Conffiles:
+ /etc/udev/rules.d/85-alsa.rules ca382942eacecfae1fa20118ea665325
+ /etc/init.d/alsa-utils ab70fda6aa10ff8ee2036b934d2f767b
+Description: ALSA utilities
+ This package contains utilities for configuring and using ALSA, including:
+  o amixer: command line mixer
+  o alsamixer: curses mixer
+  o amidi: read from and write to ALSA RawMIDI ports
+  o aplay, arecord: command line playback and recording
+  o aplaymidi, arecordmidi: command line MIDI playback and recording
+  o aconnect, aseqnet, aseqdump: command line MIDI sequencer control
+ .
+ ALSA is the Advanced Linux Sound Architecture.
+Homepage: http://www.alsa-project.org/
+Original-Maintainer: Debian ALSA Maintainers <pkg-alsa-devel@xxxxxxxxxxxxxxxxxxxxxxx>
+
+Package: gcc
+Status: install ok installed
+Priority: optional
+Section: devel
+Installed-Size: 64
+Maintainer: Ubuntu Core developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: gcc-defaults (1.62ubuntu6)
+Version: 4:4.2.3-1ubuntu6
+Provides: c-compiler
+Depends: cpp (>= 4:4.2.3-1ubuntu6), gcc-4.2 (>= 4.2.3-1)
+Recommends: libc6-dev | libc-dev
+Suggests: autoconf, automake1.9, bison, flex, gcc-doc, gcc-multilib, gdb, libtool, make, manpages-dev
+Conflicts: gcc-doc (<< 1:2.95.3)
+Description: The GNU C compiler
+ This is the GNU C compiler, a fairly portable optimizing compiler for C.
+ .
+ This is a dependency package providing the default GNU C compiler.
+Original-Maintainer: Debian GCC Maintainers <debian-gcc@xxxxxxxxxxxxxxxx>
+
+Package: gimp-help-en
+Status: install ok installed
+Priority: optional
+Section: doc
+Installed-Size: 8036
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: all
+Source: gimp-help
+Version: 2.4.0-2
+Provides: gimp-help
+Depends: gimp-help-common (= 2.4.0-2), gimp-helpbrowser | www-browser
+Enhances: gimp
+Description: Documentation for the GIMP (English)
+ This package contains the documentation files for the GIMP designed for use
+ with the internal GIMP help browser or external web browsers.
+ .
+ This package contains the documentation for the GIMP in English.
+Original-Maintainer: Ari Pollak <ari@xxxxxxxxxx>
+
+Package: busybox-initramfs
+Status: install ok installed
+Priority: optional
+Section: shells
+Installed-Size: 964
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: busybox
+Version: 1:1.1.3-5ubuntu12
+Replaces: busybox-cvs-initramfs
+Conflicts: busybox-cvs-initramfs
+Description: Standalone shell setup for initramfs
+ BusyBox combines tiny versions of many common UNIX utilities into a single
+ small executable. It provides minimalist replacements for the most common
+ utilities you would usually find on your desktop system (i.e., ls, cp, mv,
+ mount, tar, etc.).  The utilities in BusyBox generally have fewer options than
+ their full-featured GNU cousins; however, the options that are included
+ provide the expected functionality and behave very much like their GNU
+ counterparts.
+ .
+ busybox-initramfs provides a statically linked simple stand alone shell
+ that provides only the basic utilities needed for the initramfs.
+Original-Maintainer: Debian Install System Team <debian-boot@xxxxxxxxxxxxxxxx>
+
+Package: ghostscript
+Status: install ok installed
+Priority: optional
+Section: text
+Installed-Size: 3528
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 8.61.dfsg.1-1ubuntu3
+Replaces: gs (<< 8.01), gs-afpl (<< 8.60), gs-aladdin (<< 8.60), gs-common (<< 8.60), gs-esp (<< 8.60), gs-gpl (<< 8.60), gs-pdfencrypt (<< 7.00)
+Provides: gs, gs-afpl, gs-aladdin, gs-common, gs-esp, gs-gpl, gs-pdfencrypt, postscript-viewer
+Depends: debconf | debconf-2.0, debianutils (>= 1.6), defoma, gsfonts (>= 6.0-1), libc6 (>= 2.0), libgs8
+Recommends: psfontmgr
+Suggests: hpijs
+Conflicts: gs (<< 8.01), gs-afpl (<< 8.60), gs-aladdin (<< 7.00), gs-cjk-resource (<< 1.20010910-1), gs-common (<< 8.60), gs-esp (<< 8.60), gs-gpl (<< 8.60), gs-pdfencrypt (<< 7.00)
+Description: The GPL Ghostscript PostScript/PDF interpreter
+ Ghostscript is used for PostScript/PDF preview and printing.  Usually as
+ a back-end to a program such as ghostview, it can display PostScript and PDF
+ documents in an X11 environment.
+ .
+ Furthermore, it can render PostScript and PDF files as graphics to be printed
+ on non-PostScript printers. Supported printers include common
+ dot-matrix, inkjet and laser models.
+ .
+ Package gsfonts contains a set of standard fonts for Ghostscript.
+ .
+ The Ghostscript home page is at http://www.ghostscript.com/
+Original-Maintainer: Masayuki Hatta (mhatta) <mhatta@xxxxxxxxxx>
+
+Package: python-xdg
+Status: install ok installed
+Priority: optional
+Section: python
+Installed-Size: 220
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: all
+Source: pyxdg
+Version: 0.15-1.1ubuntu3
+Depends: python (>= 2.3), python-support (>= 0.7.1)
+Description: A python library to access freedesktop.org standards
+ PyXDG contains implementations of freedesktop.org standards in python:
+ .
+  * Base Directory Specification Version 0.6
+  * Menu Specification Version 0.6
+  * Desktop Entry Specification Version 0.9.4
+  * Icon Theme Specification Version 0.7
+Original-Maintainer: Sebastien Bacher <seb128@xxxxxxxxxx>
+Python-Version: 2.4, 2.3, 2.5
+
+Package: libisccc30
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 84
+Maintainer: LaMont Jones <lamont@xxxxxxxxxx>
+Architecture: i386
+Source: bind9
+Version: 1:9.4.2-10
+Replaces: libbind0
+Depends: libc6 (>= 2.4), libisc32
+Conflicts: libbind0
+Description: Command Channel Library used by BIND
+ The Berkeley Internet Name Domain (BIND) implements an Internet domain
+ name server.  BIND is the most widely-used name server software on the
+ Internet, and is supported by the Internet Software Consortium, www.isc.org.
+ .
+ This package delivers the libisccc shared library used by BIND's daemons
+ and clients, particularly rndc.
+
+Package: xserver-xorg-video-s3
+Status: install ok installed
+Priority: optional
+Section: x11
+Installed-Size: 128
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 1:0.5.0-4
+Replaces: xserver-xorg (<< 6.8.2-35), xserver-xorg-driver-s3
+Provides: xserver-xorg-video-2
+Depends: libc6 (>= 2.6.1-1), xserver-xorg-core (>= 2:1.4)
+Conflicts: xserver-xorg-driver-s3
+Description: X.Org X server -- legacy S3 display driver
+ This package provides the driver for certain legacy S3 video card chipsets,
+ including the Trio64 and 96x cards.  It does not provide support for
+ ViRGE/Trio3D or Savage chipsets; support for these cards is provided by
+ xserver-xorg-video-s3virge and xserver-xorg-driver-savage, respectively.
+ .
+ More information about X.Org can be found at:
+ <URL:http://www.X.org>
+ <URL:http://xorg.freedesktop.org>
+ <URL:http://lists.freedesktop.org/mailman/listinfo/xorg>
+ .
+ This package is built from the X.org xf86-video-s3 driver module.
+Original-Maintainer: Debian X Strike Force <debian-x@xxxxxxxxxxxxxxxx>
+
+Package: iputils-ping
+Status: install ok installed
+Priority: important
+Section: net
+Installed-Size: 120
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: iputils
+Version: 3:20071127-1
+Replaces: netbase (<< 4.00)
+Provides: ping
+Depends: libc6 (>= 2.7-1)
+Conflicts: ping, suidmanager (<< 0.50)
+Description: Tools to test the reachability of network hosts
+ The ping command sends ICMP ECHO_REQUEST packets to a host in order to
+ test if the host is reachable via the network.
+ .
+ This package includes a ping6 utility which supports IPv6 network
+ connections.
+Original-Maintainer: Noah Meyerhans <noahm@xxxxxxxxxx>
+
+Package: liblcms1
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 248
+Maintainer: Ubuntu Core developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: lcms
+Version: 1.16-7ubuntu1
+Replaces: liblcms
+Provides: liblcms
+Depends: libc6 (>= 2.6.1-1)
+Suggests: liblcms-utils
+Conflicts: liblcms
+Description: Color management library
+ lcms is a standalone CMM engine, which deals with the color management.
+ It implements a fast transformation between ICC profiles. The intention
+ of it is to be portable across several platforms.
+Original-Maintainer: Shiju p. Nair <shiju.p@xxxxxxxxx>
+
+Package: ttf-dejavu-core
+Status: install ok installed
+Priority: optional
+Section: x11
+Installed-Size: 2460
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: all
+Source: ttf-dejavu
+Version: 2.23-1
+Replaces: ttf-dejavu (<< 2.20-1)
+Depends: defoma
+Conflicts: ttf-dejavu (<< 2.20-1)
+Conffiles:
+ /etc/defoma/hints/ttf-dejavu-core.hints 52abd96a06919bbc1f1f6bb3e9d1d618
+Description: Vera font family derivate with additional characters
+ DejaVu provides an expanded version of the Vera font family aiming for
+ quality and broader Unicode coverage while retaining the original Vera
+ style. DejaVu currently works towards conformance with the Multilingual
+ European Standards (MES-1 and MES-2) for Unicode coverage. The DejaVu
+ fonts provide serif, sans and monospaced variants.
+ .
+ This package only contains the sans, sans-bold, serif, serif-bold,
+ mono and mono-bold variants. For additional variants, see the
+ ttf-dejavu-extra package.
+ .
+ DejaVu fonts are intended for use on low-resolution devices (mainly
+ computer screens) but can be used in printing as well.
+Original-Maintainer: Debian Fonts Task Force <pkg-fonts-devel@xxxxxxxxxxxxxxxxxxxxxxx>
+Homepage: http://dejavu.sourceforge.net/
+
+Package: diff
+Essential: yes
+Status: install ok installed
+Priority: required
+Section: base
+Installed-Size: 744
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: diffutils
+Version: 2.8.1-12ubuntu1
+Pre-Depends: libc6 (>= 2.5-5)
+Suggests: diff-doc
+Description: File comparison utilities
+ The diff package provides the diff, diff3, sdiff, and cmp programs.
+ .
+ `diff' shows differences between two files, or each corresponding file
+ in two directories.  `cmp' shows the offsets and line numbers where
+ two files differ.  `cmp' can also show all the characters that
+ differ between the two files, side by side.  `diff3' shows differences
+ among three files.  `sdiff' merges two files interactively.
+ .
+ The set of differences produced by `diff' can be used to distribute
+ updates to text files (such as program source code) to other people.
+ This method is especially useful when the differences are small compared
+ to the complete files.  Given `diff' output, the `patch' program can
+ update, or "patch", a copy of the file.
+Original-Maintainer: Santiago Vila <sanvila@xxxxxxxxxx>
+
+Package: libxp6
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 76
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: libxp
+Version: 1:1.0.0.xsf1-1build1
+Depends: libc6 (>= 2.5-0ubuntu1), libx11-6, libxau6, libxext6
+Description: X Printing Extension (Xprint) client library
+ libXp provides public APIs to allow client applications to render to
+ non-display devices, making use of the X Print Service.
+ .
+ More information about X.Org can be found at:
+ <URL:http://xorg.freedesktop.org>
+ <URL:http://lists.freedesktop.org/mailman/listinfo/xorg>
+ .
+ This module can be found as the module 'lib/Xp' at
+ :pserver:anoncvs@xxxxxxxxxxxxxxxxxxx:/cvs/xorg
+Original-Maintainer: Debian X Strike Force <debian-x@xxxxxxxxxxxxxxxx>
+
+Package: xserver-xorg-video-trident
+Status: install ok installed
+Priority: optional
+Section: x11
+Installed-Size: 244
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 1:1.2.4-1
+Replaces: xserver-xorg (<< 6.8.2-35), xserver-xorg-driver-trident
+Provides: xserver-xorg-video-2
+Depends: libc6 (>= 2.7-1), xserver-xorg-core (>= 2:1.4)
+Conflicts: xserver-xorg-driver-trident
+Description: X.Org X server -- Trident display driver
+ This package provides the driver for Trident Blade/Image/ProVidia/TGUI/9xxx
+ video cards.
+ .
+ More information about X.Org can be found at:
+ <URL:http://www.X.org>
+ <URL:http://xorg.freedesktop.org>
+ <URL:http://lists.freedesktop.org/mailman/listinfo/xorg>
+ .
+ This package is built from the X.org xf86-video-trident driver module.
+Original-Maintainer: Debian X Strike Force <debian-x@xxxxxxxxxxxxxxxx>
+
+Package: iputils-tracepath
+Status: install ok installed
+Priority: optional
+Section: net
+Installed-Size: 104
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: iputils
+Version: 3:20071127-1
+Replaces: netbase (<< 4.00)
+Depends: libc6 (>= 2.7-1)
+Suggests: traceroute
+Conflicts: suidmanager (<< 0.50)
+Description: Tools to trace the network path to a remote host
+ The tracepath utility is similar to the traceroute utility, but also
+ attempts to discover the MTU of the path.
+ .
+ This package also includes tracepath6 and traceroute6 utilities, which
+ may be used on IPv6 networks.
+Original-Maintainer: Noah Meyerhans <noahm@xxxxxxxxxx>
+
+Package: xserver-xorg-video-tga
+Status: install ok installed
+Priority: optional
+Section: x11
+Installed-Size: 120
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 1:1.1.0-9ubuntu1
+Replaces: xserver-xorg (<< 6.8.2-35), xserver-xorg-driver-tga
+Provides: xserver-xorg-video-2
+Depends: libc6 (>= 2.6.1-1), xserver-xorg-core (>= 2:1.4)
+Conflicts: xserver-xorg-driver-tga
+Description: X.Org X server -- TGA display driver
+ This package provides the driver for the TGA family
+ of chipsets.
+ .
+ More information about X.Org can be found at:
+ <URL:http://www.X.org>
+ <URL:http://xorg.freedesktop.org>
+ <URL:http://lists.freedesktop.org/mailman/listinfo/xorg>
+ .
+ This package is built from the X.org xf86-video-tga driver module.
+Original-Maintainer: Debian X Strike Force <debian-x@xxxxxxxxxxxxxxxx>
+
+Package: libbz2-1.0
+Status: install ok installed
+Priority: important
+Section: libs
+Installed-Size: 124
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: bzip2
+Version: 1.0.4-2ubuntu4
+Depends: libc6 (>= 2.7-1)
+Description: high-quality block-sorting file compressor library - runtime
+ This package contains libbzip2 which is used by the bzip2 compressor.
+ .
+ bzip2 is a freely available, patent free, high-quality data compressor.
+ It typically compresses files to within 10% to 15% of the best available
+ techniques, whilst being around twice as fast at compression and six
+ times faster at decompression.
+ .
+ bzip2 compresses files using the Burrows-Wheeler block-sorting text
+ compression algorithm, and Huffman coding. Compression is generally
+ considerably better than that achieved by more conventional
+ LZ77/LZ78-based compressors, and approaches the performance of the PPM
+ family of statistical compressors.
+ .
+ The archive file format of bzip2 (.bz2) is incompatible with that of its
+ predecessor, bzip (.bz).
+Homepage: http://www.bzip.org/
+Original-Maintainer: Anibal Monsalve Salazar <anibal@xxxxxxxxxx>
+
+Package: xserver-xorg-video-chips
+Status: install ok installed
+Priority: optional
+Section: x11
+Installed-Size: 240
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 1:1.1.1-9
+Replaces: xserver-xorg (<< 6.8.2-35), xserver-xorg-driver-chips
+Provides: xserver-xorg-video-2
+Depends: libc6 (>= 2.6.1-1), xserver-xorg-core (>= 2:1.4)
+Conflicts: xserver-xorg-driver-chips
+Description: X.Org X server -- Chips display driver
+ This package provides the driver for the Chips & Technologies family
+ of video cards.
+ .
+ More information about X.Org can be found at:
+ <URL:http://www.X.org>
+ <URL:http://xorg.freedesktop.org>
+ <URL:http://lists.freedesktop.org/mailman/listinfo/xorg>
+ .
+ This package is built from the X.org xf86-video-chips driver module.
+Original-Maintainer: Debian X Strike Force <debian-x@xxxxxxxxxxxxxxxx>
+
+Package: libvisual-0.4-0
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 372
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: libvisual
+Version: 0.4.0-2
+Depends: libc6 (>= 2.6.1-1)
+Recommends: libvisual-0.4-plugins
+Description: Audio visualization framework
+ Libvisual is a generic visualization framework that allows
+ applications to easily access and manage visualization plugins.
+ Audio visualization is the process of making pretty moving images
+ that are correlated in some way to the audio currently being played
+ by a media player.  Most audio visualization is tied to a specific
+ application or media player, making it difficult to share code.
+ Libvisual allows applications to use existing visualization plugins
+ written for the libvisual framework.
+ .
+ This package contains the runtime libraries for libvisual.  Libvisual
+ is not very useful without visualization plugins, so it is highly
+ recommended to install the libvisual-0.4-plugins package.
+Original-Maintainer: Brandon Holtsclaw <brandon@xxxxxxxxxxxxx>
+
+Package: libgsl0ldbl
+Status: install ok installed
+Priority: optional
+Section: math
+Installed-Size: 2236
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: gsl
+Version: 1.10-4
+Replaces: gsl, libgsl0 (<= 1.9-4)
+Depends: libc6 (>= 2.7-1)
+Suggests: gsl-ref-psdoc | gsl-doc-pdf | gsl-ref-html
+Conflicts: gsl
+Description: GNU Scientific Library (GSL) -- library package
+ The GNU Scientific Library (GSL) is a collection of routines for
+ numerical analysis.  The routines are written from scratch by the GSL
+ team in C, and present a modern API for C programmers, while allowing
+ wrappers to be written for very high level languages.
+ .
+ GSL includes data types and routines for complex numbers, vectors,
+ matrices, basic linear algebra subroutines (BLAS), eigensystems,
+ simulated annealing, minimization, root finding, pseudo-random
+ numbers, least-squares fitting, fast Fourier transforms (FFT),
+ differential equations, quadrature, Monte Carlo integration, special
+ functions, physical constants, and much more.
+ .
+ This package provides the shared libraries required to run programs
+ compiled with GNU GSL. To compile your own programs you also need to
+ install libgsl0-dev.
+Original-Maintainer: Dirk Eddelbuettel <edd@xxxxxxxxxx>
+Homepage: http://www.gnu.org/software/gsl
+
+Package: cupsddk-drivers
+Status: install ok installed
+Priority: optional
+Section: text
+Installed-Size: 424
+Maintainer: Ubuntu MOTU Developers <ubuntu-motu@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: cupsddk
+Version: 1.2.0-0ubuntu1
+Depends: libc6 (>= 2.6-1), libcomerr2 (>= 1.33-3), libcupsimage2 (>= 1.3.0), libcupsys2 (>= 1.3.0), libgcc1 (>= 1:4.2-20070516), libgnutls13 (>= 1.6.3-0), libjpeg62, libkrb53 (>= 1.6.dfsg.1), libpng12-0 (>= 1.2.13-4), libstdc++6 (>= 4.2-20070516), libtiff4, zlib1g (>= 1:1.2.3.3.dfsg-1)
+Description: CUPS Driver Development Kit - Driver files
+ The CUPS DDK drivers provide support for all HP PCL/RTL and Epson
+ ESC/P2 devices.
+ .
+ This package is needed to use the PPD files for non-PostScript
+ printers available on www.cups.org.
+Original-Maintainer: Till Kamppeter <till.kamppeter@xxxxxxxxx>
+
+Package: xserver-xorg-video-intel
+Status: install ok installed
+Priority: optional
+Section: x11
+Installed-Size: 652
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 2:2.2.1-1ubuntu13.4
+Replaces: xserver-xorg (<< 6.8.2-35), xserver-xorg-driver-i810, xserver-xorg-video-i810-modesetting, xserver-xorg-video-intel-modesetting
+Provides: xserver-xorg-video-2
+Depends: libc6 (>= 2.4), libdrm2 (>= 2.3.0), xserver-xorg-core (>= 2:1.4)
+Conflicts: xserver-xorg-driver-i810, xserver-xorg-video-i810-modesetting, xserver-xorg-video-intel-modesetting
+Description: X.Org X server -- Intel i8xx, i9xx display driver
+ This package provides the driver for the Intel i8xx and i9xx family
+ of chipsets, including i810, i815, i830, i845, i855, i865, i915, i945
+ and i965 series chips.
+ .
+ This package also provides an XvMC (XVideo Motion Compensation) driver
+ for i810 and i815 chipsets.
+ .
+ More information about X.Org can be found at:
+ <URL:http://www.X.org>
+ <URL:http://xorg.freedesktop.org>
+ <URL:http://lists.freedesktop.org/mailman/listinfo/xorg>
+ .
+ This package is built from the X.org xf86-video-intel driver module.
+Original-Maintainer: Debian X Strike Force <debian-x@xxxxxxxxxxxxxxxx>
+
+Package: perl
+Status: install ok installed
+Priority: standard
+Section: perl
+Installed-Size: 11440
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 5.8.8-12
+Replaces: perl-base (<< 5.8.8-1), perl-doc (<< 5.8.0-1), perl-modules (<< 5.8.1-1), libdigest-md5-perl, libmime-base64-perl, libtime-hires-perl, libstorable-perl
+Provides: data-dumper, perl5, libdigest-md5-perl, libmime-base64-perl, libtime-hires-perl, libstorable-perl
+Depends: perl-base (= 5.8.8-12), perl-modules (>= 5.8.8-12), libc6 (>= 2.6.1-1), libdb4.6, libgdbm3
+Recommends: perl-doc
+Suggests: libterm-readline-gnu-perl | libterm-readline-perl-perl
+Conflicts: perl-doc (<< 5.8.8-1), libdigest-md5-perl (<< 3.07-1), libmime-base64-perl (<< 3.07-1), libtime-hires-perl (<< 1.86-1), libstorable-perl (<< 2.15-1)
+Description: Larry Wall's Practical Extraction and Report Language
+ An interpreted scripting language, known among some as "Unix's Swiss
+ Army Chainsaw".
+ .
+ Perl is optimised for scanning arbitrary text files and system
+ administration.  It has built-in extended regular expression matching
+ and replacement, a data-flow mechanism to improve security with
+ setuid scripts and is extensible via modules that can interface to C
+ libraries.
+Original-Maintainer: Brendan O'Dea <bod@xxxxxxxxxx>
+
+Package: python-launchpad-bugs
+Status: install ok installed
+Priority: extra
+Section: python
+Installed-Size: 348
+Maintainer: Bughelper Developers <bughelper@xxxxxxxxxxxxxxxx>
+Architecture: all
+Version: 0.2.30.1
+Depends: python (>= 2.4), python (>= 2.5) | python-pysqlite2, python-apt, python-central (>= 0.6.5), python-libxml2
+Breaks: apport-retrace (<= 0.96), python-apport (<= 0.96), python-bughelper (<= 0.2~r184)
+Description: simple Python Interface to Bugs in Launchpad
+ Classes to access bug information in Launchpad.
+ .
+ https://launchpad.net/products/python-launchpad-bugs
+Python-Version: >= 2.4
+
+Package: system-config-printer-common
+Status: install ok installed
+Priority: optional
+Section: python
+Installed-Size: 500
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: all
+Source: system-config-printer
+Version: 0.7.81+svn1976-0ubuntu9
+Replaces: system-config-printer
+Depends: python, python-cups (>= 1.9.27), python-dbus, python-support (>= 0.7.1)
+Recommends: hal-cups-utils
+Conflicts: system-config-printer
+Conffiles:
+ /etc/dbus-1/system.d/newprinternotification.conf 639deed725aeff5b5d45abe296a84e5b
+Description: Printer configuration GUI
+ A CUPS printer configuration tool and status applet.
+ .
+ This package provides common files used by both frontends.
+Original-Maintainer: Otavio Salvador <otavio@xxxxxxxxxxxxxxxx>
+
+Package: libcaca0
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 268
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: libcaca
+Version: 0.99.beta13b-4
+Depends: libc6 (>= 2.7-1), libcucul0 (>= 0.99.beta13b-1), libgcc1, libncurses5 (>= 5.6+20071006-3), libslang2 (>= 2.0.7-1), libstdc++6 (>= 4.1.1-21)
+Description: colour ASCII art library
+ libcaca is the Colour AsCii Art library. It provides high level functions
+ for colour text drawing, simple primitives for line, polygon and ellipse
+ drawing, as well as powerful image to text conversion routines.
+ .
+ This package contains the shared library for libcaca.
+Original-Maintainer: Sam Hocevar (Debian packages) <sam+deb@xxxxxxx>
+
+Package: friendly-recovery
+Status: install ok installed
+Priority: optional
+Section: admin
+Installed-Size: 64
+Maintainer: Michael Vogt <michael.vogt@xxxxxxxxxx>
+Architecture: all
+Version: 0.1.2
+Depends: bash, upstart, whiptail
+Description: Make recovery more user-friendly
+ Make the recovery mode more user-friendly by providing a menu
+ with plugable options.
+
+Package: network-manager
+Status: install ok installed
+Priority: optional
+Section: net
+Installed-Size: 572
+Maintainer: Ubuntu Core Dev Team <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 0.6.6-0ubuntu5
+Replaces: network-manager-gnome (<< 0.6.5)
+Depends: dbus (>= 0.60), dhcdbd (>= 1.12-2), hal (>= 0.5.7.1), ifupdown, iproute, iputils-arping, libc6 (>= 2.7-1), libdbus-1-3 (>= 1.1.1), libdbus-glib-1-2 (>= 0.74), libglib2.0-0 (>= 2.16.0), libhal1 (>= 0.5.8.1), libiw29 (>= 28+29pre7), libnl1, libnm-util0, lsb-base (>= 2.0-6), wpasupplicant (>= 0.4.8)
+Recommends: network-manager-gnome | network-manager-kde
+Conffiles:
+ /etc/dbus-1/event.d/25NetworkManager 0fca10244dee75304563b20ffe3cc653
+ /etc/dbus-1/event.d/26NetworkManagerDispatcher 8f6bbce0c5c2ba27c0ca277686c86ef7
+ /etc/dbus-1/system.d/NetworkManager.conf 7c4eac983854e990272875a6bddf72b6
+ /etc/NetworkManager/dispatcher.d/01ifupdown baef465eb0158900abab72c30c2f3271
+Description: network management framework daemon
+ NetworkManager attempts to keep an active network connection available at all
+ times. It is intended only for the desktop use-case, and is not intended for
+ usage on servers. The point of NetworkManager is to make networking
+ configuration and setup as painless and automatic as possible.  If using DHCP,
+ NetworkManager is _intended_ to replace default routes, obtain IP addresses
+ from a DHCP server, and change nameservers whenever it sees fit.
+ .
+ This package provides the userspace daemons.
+ .
+  Homepage: http://www.gnome.org/projects/NetworkManager/
+Original-Maintainer: Riccardo Setti <giskard@xxxxxxxxxx>
+
+Package: libhtml-parser-perl
+Status: install ok installed
+Priority: optional
+Section: perl
+Installed-Size: 300
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 3.56-1
+Replaces: libwww-perl (<< 5.36-0)
+Depends: perlapi-5.8.8, perl (>= 5.8.8-7build1), libhtml-tagset-perl, libc6 (>= 2.5-0ubuntu1), liburi-perl
+Conflicts: libwww-perl (<< 5.36-0), libhtml-tree-perl (<< 0.61-0)
+Enhances: libwww-perl
+Description: A collection of modules that parse HTML text documents
+ This is a collection of modules that parse HTML text documents. These
+ modules used to be part of the libwww-perl distribution, but are now
+ unbundled in order to facilitate a separate development track.
+Original-Maintainer: Debian Catalyst Maintainers <pkg-catalyst-maintainers@xxxxxxxxxxxxxxxxxxxxxxx>
+
+Package: console-terminus
+Status: install ok installed
+Priority: optional
+Section: utils
+Installed-Size: 560
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: all
+Source: xfonts-terminus
+Version: 4.20-6
+Depends: kbd | console-tools, debconf | debconf-2.0
+Suggests: console-setup
+Conflicts: console-cyrillic (<= 0.9-11)
+Description: Fixed-width fonts for fast reading on the Linux console
+ This package installs in /usr/share/consolefonts several console
+ variants of the Terminus font.  If you have to work for extended time
+ in front of monitor (i.e. over eight hours), you may find that using
+ of these fonts reduces your eyes-fatigue.
+ .
+ The following charsets are supported: western European Latin, central
+ European Latin, Turkish Latin, Romanian Latin, Slavic Cyrillic and
+ Asian Cyrillic (Bashkyr, Kazakh, Mongolian and others).
+Original-Maintainer: Anton Zinoviev <zinoviev@xxxxxxxxxx>
+
+Package: libc6-i686
+Status: install ok installed
+Priority: extra
+Section: libs
+Installed-Size: 2724
+Maintainer: Ubuntu Core developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: glibc
+Version: 2.7-10ubuntu3
+Pre-Depends: libc6 (= 2.7-10ubuntu3)
+Description: GNU C Library: Shared libraries [i686 optimized]
+ Contains the standard libraries that are used by nearly all programs on
+ the system. This package includes shared versions of the standard C
+ library and the standard math library, as well as many others.
+ .
+ This set of libraries is optimized for i686 machines, and will only be
+ used if you are running a 2.6 kernel on an i686 class CPU (check the
+ output of `uname -m').  This includes Pentium Pro, Pentium II/III/IV,
+ Celeron CPU's and similar class CPU's (including clones such as AMD
+ Athlon/Opteron, VIA C3 Nehemiah, but not VIA C3 Ezra).
+Original-Maintainer: GNU Libc Maintainers <debian-glibc@xxxxxxxxxxxxxxxx>
+
+Package: language-pack-es-base
+Status: install ok installed
+Priority: optional
+Section: translations
+Installed-Size: 10344
+Maintainer: Language pack maintainers <language-packs@xxxxxxxxxx>
+Architecture: all
+Version: 1:8.04+20080527.2
+Replaces: language-pack-es (<< 1:8.04+20080527.2), language-pack-es-base (<< 1:8.04+20080527.2), language-pack-gnome-es-base (<< 1:8.04+20080527.2), language-pack-kde-es-base (<< 1:8.04+20080527.2)
+Depends: language-pack-es (>= 1:8.04+20080527.2), locales (>= 2.3.6)
+Pre-Depends: dpkg (>= 1.10.27ubuntu1)
+Recommends: language-support-es
+Conflicts: language-pack-es (<< 1:8.04+20080527.2), language-pack-gnome-es (<< 1:8.04+20080527), language-pack-gnome-es-base (<< 1:8.04+20080527)
+Description: translations for language Spanish; Castilian
+ Translation data for all supported packages for:
+ Spanish; Castilian
+ .
+ This package provides the bulk of translation data and is updated
+ only seldom. language-pack-es provides frequent
+ translation updates, so you should install this as well.
+ .
+ Please note that you should install language-support-es
+ to get full support for this language (spell checkers, OpenOffice
+ locale packages, etc.).
+
+Package: xserver-xorg-video-psb
+Status: install ok installed
+Priority: optional
+Section: x11
+Installed-Size: 160
+Maintainer: Ubuntu MOTU Developers <ubuntu-motu@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 0.2.1-1ubuntu3
+Replaces: xserver-xorg (<< 6.8.2-35), xserver-xorg-driver-psb
+Depends: libc6 (>= 2.6-1), libdrm2 (>= 2.3.0-4ubuntu1)
+Description: 2D graphics driver for Poulsbo
+ This package provides the driver for the Intel Poulsbo 2D graphics
+ driver for the Poulsbo family of embedded graphics chips.
+ .
+ More information about the Poulsbo chipset can be found at:
+ <URL:http://moblin.org>
+ <URL:http://www.intel.com/products/mid/>
+ .
+ This package is built from the moblin.org xf86-video-psb driver
+ module.
+Original-Maintainer: Chunfeng Zhao <chunfeng.zhao@xxxxxxxxx>
+
+Package: xserver-xorg-video-i810
+Status: install ok installed
+Priority: optional
+Section: x11
+Installed-Size: 364
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 2:1.7.4-0ubuntu7
+Replaces: xserver-xorg (<< 6.8.2-35), xserver-xorg-driver-i810
+Provides: xserver-xorg-video-2
+Depends: libc6 (>= 2.6.1-1), xserver-xorg-core (>= 2:1.1.1-11)
+Conflicts: xserver-xorg-driver-i810
+Description: X.Org X server -- Intel i8xx, i9xx display driver
+ This package provides the driver for the Intel i8xx and i9xx family
+ of chipsets, including i810, i815, i830, i845, i855, i865, i915, and
+ i945 series chips.
+ .
+ This package also provides an XvMC (XVideo Motion Compensation) driver
+ for the same chipsets.
+ .
+ More information about X.Org can be found at:
+ <URL:http://www.X.org>
+ <URL:http://xorg.freedesktop.org>
+ <URL:http://lists.freedesktop.org/mailman/listinfo/xorg>
+ .
+ This package is built from the X.org xf86-video-intel driver module.
+Original-Maintainer: Debian X Strike Force <debian-x@xxxxxxxxxxxxxxxx>
+
+Package: sysklogd
+Status: install ok installed
+Priority: important
+Section: admin
+Installed-Size: 216
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 1.5-1ubuntu1
+Replaces: syslogd
+Provides: syslogd, system-log-daemon
+Depends: libc6 (>= 2.6.1-1), klogd | linux-kernel-log-daemon, adduser, lsb-base (>= 1.3-9ubuntu3), sysv-rc (>= 2.86.ds1-14.1ubuntu2)
+Conflicts: syslogd
+Conffiles:
+ /etc/default/syslogd 723ca7411cc4fb42e9808b9dea96fa94
+ /etc/syslog.conf 1f0848030ec0495afef5034b9f24e0a0
+ /etc/init.d/sysklogd 13998a56e4fa2009eb125011afd9ad24
+ /etc/cron.daily/sysklogd edbd559f90aeeadf3465d6a811d32272
+ /etc/cron.weekly/sysklogd 4ced1b47069c48eace9fe5e9261af586
+Description: System Logging Daemon
+ This package implements the system log daemon, which is an enhanced
+ version of the standard Berkeley utility program. It is responsible
+ for providing logging of messages received from programs and facilities
+ on the local host as well as from remote hosts.
+Original-Maintainer: Martin Schulze <joey@xxxxxxxxxx>
+
+Package: wireless-tools
+Status: install ok installed
+Priority: extra
+Section: net
+Installed-Size: 344
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 29-1ubuntu2
+Depends: libc6 (>= 2.7-1), libiw29 (>= 28+29pre7)
+Conffiles:
+ /etc/network/if-pre-up.d/wireless-tools 8cc85db65f3e5cd8210c2322ff01d14a
+ /etc/network/if-post-down.d/wireless-tools 5ddd964cf276955df3353def88eb5268
+Description: Tools for manipulating Linux Wireless Extensions
+ This package contains the Wireless tools, used to manipulate
+ the Linux Wireless Extensions. The Wireless Extension is an interface
+ allowing you to set Wireless LAN specific parameters and get the
+ specific stats.
+Original-Maintainer: Guus Sliepen <guus@xxxxxxxxxx>
+
+Package: libtag1c2a
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 356
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: taglib
+Version: 1.4-8ubuntu1
+Replaces: libtag1, libtag1c2
+Depends: libc6 (>= 2.7-1), libgcc1 (>= 1:4.1.1-21), libstdc++6 (>= 4.2.1-4), zlib1g (>= 1:1.2.3.3.dfsg-1)
+Conflicts: libtag1, libtag1c2
+Description: TagLib Audio Meta-Data Library
+ TagLib is a library for reading and editing the meta-data of several popular
+ audio formats. Currently it supports both ID3v1 and ID3v2 for MP3 files, Ogg
+ Vorbis comments and ID3 tags and Vorbis comments in FLAC files.
+ .
+ This is the runtime package for programs that use the TagLib Audio Meta-Data
+ Library.
+Original-Maintainer: Christopher L Cheney <ccheney@xxxxxxxxxx>
+
+Package: language-pack-de
+Status: install ok installed
+Priority: optional
+Section: translations
+Installed-Size: 36
+Maintainer: Language pack maintainers <language-packs@xxxxxxxxxx>
+Architecture: all
+Version: 1:8.04+20080527
+Replaces: language-pack-de (<< 1:8.04+20080527), language-pack-de-base, language-pack-gnome-de (<< 1:8.04+20080527), language-pack-gnome-de-base (<< 1:8.04+20080527), language-pack-kde-de (<< 1:8.04+20080527), language-pack-kde-de-base (<< 1:8.04+20080527)
+Depends: language-pack-de-base
+Pre-Depends: dpkg (>= 1.10.27ubuntu1)
+Description: translation updates for language German
+ Translation data updates for all supported packages for:
+ German
+ .
+ language-pack-de-base provides the bulk of translation data
+ and is updated only seldom. This package provides frequent translation
+ updates.
+ .
+ Please note that you should install language-support-de
+ to get full support for this language.
+
+Package: libvorbis0a
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 216
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: libvorbis
+Version: 1.2.0.dfsg-2
+Replaces: libvorbis0
+Depends: libc6 (>= 2.6.1-1), libogg0 (>= 1.1.3)
+Conflicts: libvorbis0
+Description: The Vorbis General Audio Compression Codec
+ Ogg Vorbis is a fully open, non-proprietary, patent-and-royalty-free,
+ general-purpose compressed audio format for audio and music at fixed
+ and variable bitrates from 16 to 128 kbps/channel.
+ .
+ The Vorbis library is the primary Ogg Vorbis library.
+Original-Maintainer: Debian Xiph.org Maintainers <pkg-xiph-maint@xxxxxxxxxxxxxxxxxxxxxxx>
+
+Package: libcucul0
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 780
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: libcaca
+Version: 0.99.beta13b-4
+Depends: libc6 (>= 2.7-1), libgcc1, libstdc++6 (>= 4.1.1-21)
+Conflicts: caca-utils (<< 0.99.beta10-1)
+Description: low-level Unicode character drawing library
+ libcaca is the Colour AsCii Art library. It provides high level functions
+ for colour text drawing, simple primitives for line, polygon and ellipse
+ drawing, as well as powerful image to text conversion routines.
+ .
+ This package contains the shared library for libcucul, libcaca's
+ platform-independent character drawing engine.
+Original-Maintainer: Sam Hocevar (Debian packages) <sam+deb@xxxxxxx>
+
+Package: ubiquity
+Status: install ok installed
+Priority: optional
+Section: admin
+Installed-Size: 8392
+Maintainer: Ubuntu Installer Team <ubuntu-installer@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Version: 1.8.12
+Replaces: espresso, espresso-grub, espresso-kbd-chooser, espresso-keyboard-setup, espresso-locale, espresso-timezone, espresso-utils, espresso-yaboot, partman, ubiquity-frontend-gtk (<< 0.99.82), ubuntu-express, user-setup (<< 0.05ubuntu6)
+Depends: adduser, console-setup (>= 1.21ubuntu8), debconf (>= 1.4.72ubuntu5), grub, iso-codes, laptop-detect, libc6 (>= 2.4), libdebconfclient0, libdebian-installer4 (>= 0.54), libparted1.7-1 (>= 1.7.1-1), libxml2 (>= 2.6.27), lsb-release, os-prober, passwd, python (>= 2.4), python-apt (>= 0.6.16.2ubuntu4), python-central (>= 0.6.7), ubiquity-artwork-1.8.12, ubiquity-casper, ubiquity-frontend-1.8.12
+Conflicts: espresso, espresso-grub, espresso-kbd-chooser, espresso-keyboard-setup, espresso-locale, espresso-timezone, espresso-utils, espresso-yaboot, partman, ubuntu-express, user-setup (<< 0.05ubuntu6)
+Conffiles:
+ /etc/init.d/ubiquity c2d06969163e91dbd9441791a6f36c90
+Description: Ubuntu live CD installer
+ This is a simple live CD installer designed to integrate well with Debian-
+ and Ubuntu-based systems, and to reuse code from d-i for ease of
+ maintenance.
+ .
+ Installing this package on a normal system is unlikely to be useful.
+Python-Version: current, >= 2.4
+
+Package: libgphoto2-2
+Status: install ok installed
+Priority: optional
+Section: libs
+Installed-Size: 4144
+Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
+Architecture: i386
+Source: libgphoto2
+Version: 2.4.0-8ubuntu7
+Depends: adduser, libc6 (>= 2.4), libexif12, libgphoto2-port0 (>= 2.4.0), libjpeg62, libltdl3 (>= 1.5.2-2)
+Recommends: hal (>= 0.5.10-5ubuntu1)
+Suggests: gphoto2 (>= 2.1.1)

Follow ups